.examedi-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    padding: 0 10px;
}

.examedi-stepper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.examedi-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 600;
    color: #999;
    transition: all 0.3s;
}

.examedi-step.active .step-circle {
    background: #08747a;
    border-color: #4e8e92;
    color: #fff;
}

.examedi-step.completed .step-circle {
    background: #08747a;
    border-color: #08747a;
    color: #fff;
}

.step-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.examedi-step.active .step-label {
    color: #08747a;
    font-weight: 600;
}

/* Content Styles */
.step-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Styles */
.examedi-form .form-group {
    margin-bottom: 15px;
}

.examedi-form label {
    font-weight: 500;
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
}

.examedi-form .form-control {
    border-radius: 6px;
    padding: 10px 12px;
    height: auto;
    color: #393939!important;
}

.examedi-form .form-control:focus {
    border-color: rgb(128, 128, 128) !important;
}

.examedi-form .form-control:focus-within {
    border-color: rgb(128, 128, 128) !important;
}

/* Date Slider Styles */
.date-slider-container {
    position: relative;
    margin-bottom: 10px;
}

.date-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 10px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.date-slider::-webkit-scrollbar {
    display: none;
}

.date-item {
    flex: 0 0 80px;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
}

.date-item:hover {
    border-color: #08747a;
}

.date-item.active {
    background: #08747a;
    border-color: #08747a;
    color: #fff;
}

.date-item .day-name {
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.date-item .day-number {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.date-item .month-name {
    font-size: 11px;
    display: block;
}

.date-item span {
    user-select: none;
}

/* Time Slots Styles */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.text-default-message {
    grid-column: 1 / -1;
}

.time-item {
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.time-item:hover {
    border-color: #08747a;
    background: #f0fdff;
}

.time-item.active {
    background: #08747a;
    border-color: #08747a;
    color: #fff;
}

/* Footer Buttons */
.examedi-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
    padding-bottom: 1rem
}

.btn-examedi-next {
    background: #178b64;
    color: #fff !important;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-examedi-prev {
    background: #f5f5f5;
    color: #666;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-examedi-next:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Slider Navigation Styles */
.date-slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.slider-nav {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    flex-shrink: 0;
    font-weight: bold;
    color: #08747a;
    user-select: none;
}

.slider-nav-slider:hover {
    background: #f0f0f0;
    border-color: #08747a;
}

.slider-nav-slider {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid #cdcdcd;
    font-size: 25px;
    line-height: 0;
    background-color: #fdfdfd;
}

.date-slider {
    flex-grow: 1;
    margin: 0 10px;
    cursor: grab;
}

.date-slider:active {
    cursor: grabbing;
}

.btn-examedi-next:hover {
    color: #ffffff !important
}

.arrows-content {
    gap: 14px
}

.btn-complete-data{
    border: 1px solid #08747a;
}

.btn-complete-data:hover{
    background-color: #08747a;
    color: #ffffff!important;
}

.btn-complete-data:hover i{
    color: #ffffff!important;
}