.text-orange{color:#EE661C;}
.text-black{color: #212529;}
.text-header{font-size: 25px !important;}
.text-underline{text-decoration: underline;}
.ls-0-3{letter-spacing: 0.3px !important;}
.line-height-1-5{line-height: 1.5 !important;}
.img-responsive{width: 100% !important;}
.bg-pastel{background-color: #FFFBF4 !important;}
.feature-box .feature-box-icon {top:2px;}

.social-icons li a {
    border: 0;
    font-size: 1rem;
    line-height: 35px;
}
.info-row-success {
    display: flex;
    justify-content: space-between;
    margin-top:10px;
}
.card-body{
    border: 1px solid #909393;
    border-radius: 10px;
}

.feature-box .feature-box-icon {
    background-color: #EE661C;
    border-radius: 25%;
}

.form-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.form-subtitle {
    color: #f97316;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-control{
    padding: 12px 16px;
    border: 1px solid #909393;
    border-radius: 8px;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #909393;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-input.placeholder {
    color: #909393;
}

.form-input.filled {
    color: #111827;
}

.slot-display {
    text-align: center;
    padding: 32px 16px;
    color: #9ca3af;
}

.slot-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    opacity: 0.5;
}

/* Custom Select Dropdown Styles */
.custom-select-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    background: #FAFAFA;
    border: 1px solid #EDEDED;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.custom-select-trigger:hover {
    border-color: #f97316;
    background: #fff;
}

.custom-select.active .custom-select-trigger {
    border-color: #f97316;
    background: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-select-trigger .fa-users {
    font-size: 20px;
}

.custom-select-trigger span {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.select-arrow {
    transition: transform 0.3s ease;
    color: #6b7280;
}

.custom-select.active .select-arrow {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #f97316;
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.custom-select.active .custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Smart positioning when dropdown is near bottom */
.custom-select.dropup .custom-select-trigger {
    border-radius: 12px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.custom-select.dropup .custom-select-dropdown {
    top: auto;
    bottom: 100%;
    border-top: 1px solid #f97316;
    border-bottom: none;
    border-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform: translateY(10px);
}

.custom-select.dropup.active .custom-select-dropdown {
    transform: translateY(0);
}

.custom-select-option {
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: #fff7ed;
}

.custom-select-option.selected {
    background: #ffedd5;
    font-weight: 600;
    color: #f97316;
}

.custom-select-option .fa-user,
.custom-select-option .fa-users {
    font-size: 16px;
    color: #f97316;
    width: 20px;
    text-align: center;
}

.custom-select-option span {
    flex: 1;
    font-size: 15px;
}

/* Disabled state for options */
.custom-select-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Scrollbar styling */
.custom-select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-bottom-right-radius: 12px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 3px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

.error {
    display: none;
}
.modal-otp {
    max-width: 500px;
    padding: 2rem;
}

.otp-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.otp-header p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
}

.otp-content {
    margin: 2rem 0;
}

.otp-inputs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.otp-input {
    width: 70px;
    height: 70px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.2s;
}

.otp-input:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.otp-input.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.otp-error {
    text-align: center;
    margin-top: 1rem;
}

.otp-footer {
    text-align: center;
    margin-top: 2rem;
}

.otp-footer p {
    font-size: 0.9rem;
}

.otp-footer a {
    text-decoration: none;
    font-weight: 600;
}

.otp-footer a:hover {
    text-decoration: underline;
}

#otpTimer {
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    .modal-otp {
        padding: 1.5rem;
    }
    
    .otp-inputs {
        gap: 0.5rem;
    }
    
    .otp-input {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

.btn-visitor-control:disabled,
.btn-visitor-control.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.whatsapp-box {
    background: #FAFAFA;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    cursor: pointer;
}

.whatsapp-content {
    display: flex;
    gap: 15px;
    align-items: center;
}

.whatsapp-icon {
    background: #22c55e;
    border-radius: 50%;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-text h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.whatsapp-link {
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease;
}

.whatsapp-link:hover,
a.whatsapp-link:not(.btn):hover {
    text-decoration: none !important;
    transform: scale(1.02);
}


.button-group {
    display: flex;
    gap: 12px;
}

.btn {
    flex: 1;
    padding: 14px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-outline {
    border: 2px solid #d1d5db;
    background: white;
    color: #374151;
}

.btn-primary {
    background: linear-gradient(to right, #f97316, #fb923c);
    color: white;
}

.download-btn {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.download-btn:hover {
    transform: translateY(-2px);
}

/* STEP 1 */
.batch-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 12px;
    display: block;
}

.batch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.batch-item {
    position: relative;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    cursor: pointer;
    background: white;
    transition: all 0.2s;
    text-align: center;
}

.batch-item:hover:not(.disabled) {
    border-color: #fb923c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.1);
}

.batch-item.selected {
    border-color: #f97316;
    background: #f97316;
}

.batch-item.selected .batch-name {
    color: white;
}

.batch-item.selected .batch-slots {
    background-color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.batch-item.selected .batch-time {
    color: white;
    background-color: #f97316;
    border-top-color: rgba(255, 255, 255, 1);
}

.batch-item.selected .batch-calendar-icon {
    opacity: 1;
}

.batch-item.disabled {
    border-color: #e5e7eb;
    background: #f9fafb;
    opacity: 0.6;
    cursor: not-allowed;
}

.batch-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.batch-calendar-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    opacity: 0.9;
    z-index: 10;
}

.batch-calendar-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.guide-legend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 24px;
    border: 1px solid #aeaeae;
}

.guide-legend img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.guide-legend span {
    font-size: 13px;
    font-weight: 500;
    padding-top: 1px;
}

.batch-name {
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    margin-top: 8px;
}

.batch-slots {
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    margin: 5px 10px 10px 10px;
}

.batch-time {
    font-size: 11px;
    color: #6b7280;
    border-top: 1px solid #d1d5db;
    background-color: #F9F9F9;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.guide-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #D9D9D9;
    color: #494B4B;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 20px;
    line-height: 0.5;
    background: transparent;
}

.guide-btn:hover {
    color: #374151;
}

/* STEP FAILED */
.quantity-box {
    background-color: transparent;
    border: 1px solid #909393;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 30px;
}

.quantity-label {
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight:600;
}

.quantity-info {
    color: #777;
    font-size: 13px;
    margin-bottom: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-display {
    flex: 1;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.btn-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-minus {
    background-color: #ff6b35;
    color: white;
}

.btn-minus:hover {
    background-color: #e55a2b;
}

.btn-minus:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.btn-plus {
    background-color: #cccccc;
    color: white;
}

.btn-plus:hover {
    background-color: #b8b8b8;
}

.btn-plus:disabled {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-back {
    background-color: white;
    border: 2px solid #e0e0e0;
    color: #666;
}

.btn-back:hover {
    background-color: #f5f5f5;
}

.btn-next {
    background-color: #e0e0e0;
    color: #999;
}

.btn-next:disabled {
    cursor: not-allowed;
}

.btn-next.active {
    background-color: #ff6b35;
    color: white;
}

.btn-next.active:hover {
    background-color: #e55a2b;
}


/* Modal Styles */
.modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 9998 !important;
}

.modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.modal-content {
    position: fixed !important;
    background: white !important;
    z-index: 9999 !important;
    max-height: 80vh;
    overflow-y: auto;
}

/* Mobile Modal - Bottom Sheet */
@media (max-width: 767px) {
    .modal-content {
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        border-radius: 24px 24px 0 0 !important;
        padding: 24px;
        transform: translateY(100%) !important;
        transition: transform 0.3s ease-out;
    }
    
    .modal-content.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
}

/* Desktop Modal - Centered */
@media (min-width: 768px) {
    .modal-content {
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        border-radius: 24px !important;
        padding: 24px !important;
        max-width: 500px !important;
        width: 90% !important;
        max-height: 90vh !important;
        transform: translate(-50%, -50%) scale(0.9) !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0s 0.3s !important;
    }
    
    .modal-content.active {
        transform: translate(-50%, -50%) scale(1) !important;
        opacity: 1 !important;
        visibility: visible !important;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0s 0s !important;
    }
    
    .modal-content.modal-info {
        max-width: 600px !important;
    }
}

@media (min-width: 768px) {
    /* Overlay harus tetap menutupi background tapi tidak menghalangi modal */
    #dateOverlay, #timeOverlay, #infoOverlay {
        z-index: 9998 !important;
    }
    
    #dateOverlay.active, #timeOverlay.active, #infoOverlay.active {
        pointer-events: auto !important;
    }
    
    /* Modal harus di atas overlay */
    #dateModal, #timeModal, #infoModal {
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) scale(0.9) !important;
        pointer-events: auto !important;
        z-index: 9999 !important;
    }
    
    #dateModal.active, #timeModal.active, #infoModal.active {
        transform: translate(-50%, -50%) scale(1) !important;
        pointer-events: auto !important;
        z-index: 9999 !important;
    }
    
    /* Pastikan semua child element dalam modal bisa diklik */
    #dateModal *, #timeModal *, #infoModal * {
        pointer-events: auto !important;
    }
}

/* Calendar Styles */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 8px;
}

.calendar-nav {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.calendar-nav:hover {
    background: #f3f4f6;
}

.calendar-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    flex: 1;
    text-transform: uppercase;
    margin: 0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.calendar-weekday {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 24px;
    pointer-events: auto;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: none;
    pointer-events: auto;
}

.calendar-day.other-month {
    color: #d1d5db;
}

.calendar-day.current-month {
    color: #111827;
}

.calendar-day.current-month:hover {
    background: #f3f4f6;
}

.calendar-day.selected {
    background: #f97316;
    color: white;
}

.calendar-day.today {
    background: #f97316;
    color: white;
}

.calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.disabled:hover {
    background: none;
}

/* Time Picker Styles */
.time-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.close-btn {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    pointer-events: auto;
}

.time-slots {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 24px;
}

.time-slot {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    color: #111827;
    text-align: left;
    pointer-events: auto;
}

.time-slot:hover {
    border-color: #f97316;
    background: #fff7ed;
}

.time-slot.selected {
    background: #f97316;
    color: white;
    border-color: #f97316;
}

/* Time Picker Scroll Style */
.time-picker-modal {
    max-width: 400px;
}

.time-picker-wrapper {
    position: relative;
    margin: 20px 0;
}

.time-picker-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.time-picker-column {
    flex: 1;
    max-width: 80px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.time-picker-scroll {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 88px 0;
}

.time-picker-scroll::-webkit-scrollbar {
    display: none;
}

.time-picker-item {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: #9ca3af;
    scroll-snap-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
}

.time-picker-item:hover {
    color: #6b7280;
}

.time-picker-item.selected {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.time-picker-separator {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    padding: 0 5px;
}

.time-picker-selection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 44px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background: rgba(249, 115, 22, 0.05);
    pointer-events: none;
    z-index: 1;
}

.time-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

/* Desktop responsive */
@media (min-width: 768px) {
    .time-picker-modal {
        max-width: 450px;
    }
    
    .time-picker-column {
        max-width: 100px;
    }
    
    .time-picker-item {
        font-size: 20px;
    }
    
    .time-picker-item.selected {
        font-size: 32px;
    }
}

.confirm-btn {
    width: 100%;
    padding: 16px;
    border-radius: 24px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    pointer-events: auto;
}

.confirm-btn.active {
    background: linear-gradient(to right, #f97316, #fb923c);
    color: white;
}

.confirm-btn.disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
}

/* MODALTEXT */
.modal-info {
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.info-content {
    padding: 24px;
}

.info-icon {
    text-align: center;
    margin-bottom: 20px;
}

.info-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    text-align: center;
}

.info-note {
    background: #fef3f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    display: block;
    gap: 12px;
    align-items: flex-start;
}

.info-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.info-note span {
    color: #dc2626;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}


/* MODALTEXT */
.modal-content.modal-info {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
}

@media (min-width: 768px) {
    .modal-content.modal-info {
        max-width: 600px !important;
    }
}

.info-header {
    flex-shrink: 0;
}

.info-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.modal-footer-fixed {
    flex-shrink: 0;
    background: white;
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.checkbox-container {
    margin-bottom: 15px;
}

.custom-control.custom-checkbox {
    display: flex;
    align-items: flex-start;
    padding-left: 0;
}

.custom-control-input {
    position: relative;
    margin-left: 0;
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.custom-control-label {
    padding-left: 0;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.custom-control-label::before,
.custom-control-label::after {
    display: none;
}

.modal-footer-fixed .confirm-btn {
    width: 100%;
    margin: 0;
}

.modal-footer-fixed .btn {
    margin: 0;
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 20px;
    font-size: 14px;
    transition: all 0.2s;
}

.modal-footer-fixed .btn-outline {
    background: white;
    border: 2px solid #e5e7eb;
    color: #374151;
}

.modal-footer-fixed .btn-outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.modal-footer-fixed .btn-primary {
    background: #f7931e;
    border: 2px solid #f7931e;
    color: white;
}

.modal-footer-fixed .btn-primary:hover {
    background: #e68419;
    border-color: #e68419;
}

.scroll-indicator {
    text-align: center;
    padding: 15px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.custom-control-input:disabled ~ .custom-control-label {
    opacity: 0.5;
    cursor: not-allowed;
}

.confirm-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

a:focus {
    color: inherit !important;
}

.text-smra {
    text-transform: initial !important;
}

.form-control:not(.form-control-sm):not(.form-control-lg) {
    font-size: 0.85rem !important;
    line-height: 0.85 !important;
}

small, .small {
    font-size: 85% !important;
}