/* Stepper styles */
.stepper {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.stepper li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0.5;
}

.stepper li.active {
    opacity: 1;
}

.stepper li.completed {
    opacity: 1;
}

.stepper li.skipped {
    opacity: 0.7;
}

.stepper .circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #4FA4B5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-right: 10px;
}

.stepper li.skipped .circle {
    background-color: #ffc107;
    position: relative;
}

.stepper li.skipped .circle::after {
    content: '\f04e'; /* FontAwesome forward icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
}

.stepper li.skipped .text {
    color: #6c757d;
    text-decoration: line-through;
}

.stepper .text {
    font-weight: 500;
}

/* Button styles */
.btn-primary {
    background-color: #4FA4B5;
    border-color: #4FA4B5;
}

.btn-primary:hover {
    background-color: #3d8291;
    border-color: #3d8291;
}

.btn-rounded {
    border-radius: 15px;
}

/* Upload box styles */
.upload-box {
    border: 2px dashed #cccccc;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.upload-box:hover {
    border-color: #4FA4B5;
}

.upload-box.dragover {
    border-color: #4FA4B5;
    background-color: #f7f7f7;
}

.upload-box.disabled {
    cursor: not-allowed;
}

/* Step container styles */
.step-container {
    display: none;
}

.step-container.active {
    display: block;
}

/* Navigation button styles */
.navigation-buttons {
    display: none;
}

.navigation-buttons.active {
    display: flex;
}

/* Primary content area */
.primary {
    color: #232324;
}

/* Background and card styles */
.bg-light-gray {
    background-color: #FAFAFA;
}

.border-right-gray {
    border-right: 1px solid #CCD5DB;
}

/* Support button */
.support-button {
    width: 160px;
    border-radius: 15px;
}

/* Status indicator colors */
.text-primary {
    color: #4FA4B5 !important;
}

.bg-primary {
    background-color: #4FA4B5 !important;
}

/* Hide file inputs visually but keep them accessible */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}