body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    padding: 20px 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

h2 {
    color: #333;
    font-size: 24px;
    margin: 20px 0;
}

/* Reset list styles */
ul {
    list-style-type: none !important;
    padding: 0;
    margin: 0;
}

/* Steps navigation */
.container > ul:first-of-type {
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.container > ul:first-of-type li {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
    color: #666;
    font-size: 14px;
}

.container > ul:first-of-type li::before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    border: 2px solid #ccc;
    display: block;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    line-height: 27px;
    background: white;
    color: #ccc;
    text-align: center;
    font-weight: bold;
}

.container > ul:first-of-type li.active::before {
    border-color: #d35400;
    color: #d35400;
}

.container > ul:first-of-type li.active {
    color: #d35400;
    font-weight: bold;
}

/* General lists */
ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Form elements */
input[type="text"],
input[type="email"],
input[type="file"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.required {
    color: #d35400;
    margin-left: 3px;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Buttons */
.btn,
.btn.btn-primary,
.btn.btn-secondary {
    padding: 10px 20px !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    margin: 10px 10px 10px 0 !important;
    background-color: #d35400 !important;
    color: white !important;
    border: none !important;
    text-transform: uppercase !important;
    box-shadow: none !important;
}

.btn:hover,
.btn.btn-primary:hover,
.btn.btn-secondary:hover {
    background-color: #a04000 !important;
    color: white !important;
    border: none !important;
}

.btn.btn-secondary:disabled {
    background-color: #ccc !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
}

/* Sections */
section {
    margin: 30px 0;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

#error-message {
    color: #d35400;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Product list specific styles */
#product-list {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin: 20px 0;
}

#product-list h3 {
    padding-bottom: 25px;
    margin: 0;
}

#product-list ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#product-list li {
    margin: 0;
    padding: 0;
    flex: 1;
}

#uploadStatus {
    margin-top: 10px;
    font-size: 14px;
}

#formInfo {
    display:none
}

#uploadProof img, #issueContainer img {
    height: 100px;
}

/* Checkbox */
.form-check-input {
    border-color: #fd7e14 !important;
}

.form-check-input:checked {
    background-color: #fd7e14 !important;
    border-color: #fd7e14 !important;
}