@import url("root.css");

.hero {
    height: 20vh;
    overflow: hidden;
}

/* ------ stepper section -------- */

.stepper {
    --default-b: #f0f2f5;
    --default-c: #6c757d;
    --active-b: linear-gradient(135deg, #e74c3c, #c0392b);
    --active-c: white;
    --completed-b: #4cc9f0;
    --completed-c: white;
    --circle: 3.5em;
    --b: 3px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 2rem;
    position: relative;
    font-size: 18px;
    font-weight: 400;
    width: 100%;
    max-width: 900px;
    margin-top: -200px;
    padding: 1.5rem 2rem;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
}

.stepper-start-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--circle);
    height: var(--circle);
    border: 5px solid #fff;
    background: var(--default-b);
    color: var(--default-c);
    border-radius: 50%;
    font-size: 18px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stepper-item.active .stepper-start-icon {
    background: var(--active-b);
    border-color: rgb(255, 255, 255);
    color: var(--active-c);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(248, 79, 54, 0.648);
}

.stepper-item.completed .stepper-start-icon {
    background: var(--completed-b);
    color: var(--completed-c);
}

/* Stepper Line */
.stepper-item:not(:first-child)::before {
    content: "";
    position: absolute;
    height: var(--b);
    width: 100%;
    background: var(--default-b);
    top: calc(var(--circle) / 2);
    left: -50%;
    z-index: 0;
    transition: background 0.3s ease-in-out;
}

/* Active and completed line */
.stepper-item.active::before,
.stepper-item.completed::before,
.stepper-item.active ~ .stepper-item.completed::before {
    background: linear-gradient(90deg, #ef5a20f3, #ff0000);
}

.stepper-item p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-top: 12px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.stepper-item.active p {
    color: #ffffff;
    font-weight: 400;
}

.stepper-item.completed p {
    color: #4cc9f0;
}

/* Icons styling */
.stepper-item i {
    font-size: 1.2em;
    color: var(--default-c);
    transition: all 0.3s ease-in-out;
}

.stepper-item.active i {
    color: var(--active-c);
    transform: scale(1.1);
}

.stepper-item.completed i {
    color: var(--completed-c);
}

/* Pulse animation for active step */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(67, 97, 238, 0); }
    100% { box-shadow: 0 0 0 0 rgba(67, 97, 238, 0); }
}

.stepper-item.active .stepper-start-icon {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stepper {
        width: 100%;
        padding: 1rem;
    }
    
    .stepper-item p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .stepper {
        width: 100%;
        padding: 1rem;
    }
    
    .stepper-item p {
        font-size: 12px;
    }
}


/* ----- Input Section ------- */

.form-step {
    display: none;
}

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

/* ---- schedule section ----- */

 .time_container{
    background: linear-gradient(135deg, #e74c3c, #c0392b); box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 30px;
    min-height: 30px;
    width: 160px;
    height: 125px;
    text-align: center;
    color: #fff;
    align-content: center;
} 

.form-select:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* ---- Date section ----- */

.date-picker {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
}
.date-box {
    position: relative;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    height: 75px;
    flex: 1;
    cursor: pointer;
    background-color: white;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0 5px;
    max-height: 75px;
}

.nav-button {
    background: linear-gradient(135deg, #e74c3c, #c0392b); box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 75px;
    width: 40px;
    font-weight: 800;
}
.nav-button:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b); box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.icon {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 14px;
    color: #DC3545;
}

.active-date {
    background-color: #ffa8a8;
}

@media (max-width: 768px) {
    .date-box {
        padding: 10px;
    }
}

.form-select {
    min-width: 100%; 
    transition: visibility 0.3s, opacity 0.3s ease-in-out; 
}

#foreign-address {
    transition: visibility 0.3s, opacity 0.3s ease-in-out;
}

/* inputs and selects  */

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #3a11dd !important;
}

/* button hover */

button {
    outline: none;
    transition: all 0.3s ease-in-out;
}

button:hover {
    transform: scale(1.05);
}
.passenger-dropdown {
    position: absolute;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: none;
    z-index: 1000;
}
.counter {
    display: flex;
    align-items: center;
}

.counter .counterBtn {
    width: 30px;
    height: 30px;
    border: none;
    background: red;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.counter .counterBtn:hover{
    background: #dc3545
}
.counter span {
    margin: 0 10px;
    font-size: 18px;
    min-width: 20px;
    text-align: center;
}

.calindar_span_icon {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 18px;
    color: red;
}

/* Phone number */
.custom-label {
    background: #eaeaea;
    border-radius: 15px 15px 0 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 10px;
    /* z-index: 10; */
}

.custom-label span {
    color: red;
}

.form-control, .form-select {
    height: 45px;
    padding-left: 15px;
    font-size: 14px;
    border-radius: 10px;
}

.iti {
    width: 100%;
}

.intl-tel-input {
    width: 100%;
}

/* Radio buttons */
.radio-label {
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
}

.form-check-input {
    width: 18px;
    height: 18px;
}

.form-check-label {
    font-size: 14px;
}
/* modal alert animated icon*/

.success-icon {
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { opacity: 0.9; transform: scale(1.1); }
    80% { transform: scale(0.89); }
    100% { transform: scale(1); opacity: 1; }
}

.modal-content {
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Bookings CSS */

.no-trips-container {
    text-align: center;
    background: #fff3cd; /* Light yellow background */
    color: #856404; /* Dark yellow text */
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ffeeba;
    margin-top: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    animation: fadeIn 0.5s ease-in-out;
}

.no-trips-container i {
    font-size: 50px;
    color: #d39e00;
    margin-bottom: 10px;
}

.no-trips-container h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.no-trips-container p {
    font-size: 16px;
    margin-bottom: 0;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content::-webkit-scrollbar {
    display: none;
}


.hero-section::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.hero-content {
    flex-grow: 1;
    overflow-y: auto;
    max-height: 100vh;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 5%;
    padding-bottom: 5%;
}




/* Enable scrolling only on small, medium, and large screens */
@media (max-width: 1200px) {
    .hero-section {
        height: 90vh;
        overflow-y: auto; /* Enable scrolling */
        display: flex;
        flex-direction: column;
        justify-content: start;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    } 

    .hero-content {
        flex-grow: 1;
        overflow-y: auto; /* Enable scrolling inside */
        max-height: 90vh;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        -ms-overflow-style: none;
        padding-top: 5%;
        padding-bottom: 1%;
    }
} 

@media (max-width: 992px) {
    .hero-content {
        flex-grow: 1;
        overflow-y: auto; /* Enable scrolling inside */
        max-height: 90vh;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        -ms-overflow-style: none;
        padding-top: 5%;
        padding-bottom: 2%;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-grow: 1;
        overflow-y: auto; /* Enable scrolling inside */
        max-height: 90vh;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        -ms-overflow-style: none;
        padding-top: 5%;
        padding-bottom: 2%;
    }
}

@media (max-width: 576px) {
    .hero-content {
        flex-grow: 1;
        overflow-y: auto; /* Enable scrolling inside */
        max-height: 90vh;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        -ms-overflow-style: none;
        padding-top: 5%;
        padding-bottom: 2%;
    }
}

.use-contact-info {
    width: 50px;
    height: 25px;
}

.shadow-primary {
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.3), 0 4px 6px -4px rgba(239, 68, 68, 0.3);
}

.icon-confirm {
    transition: all 0.3s ease;
}

.icon-confirm:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 30px -5px rgba(13, 202, 240, 0.4);
}

.modal-content {
    transition: all 0.3s ease;
    overflow: hidden;
}

.modal-content:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

#proceed-to-payment {
    transition: all 0.3s ease;
}

#proceed-to-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -5px rgba(13, 148, 136, 0.4), 0 10px 10px -5px rgba(239, 68, 68, 0.2);
}

.cursor-pointer {
    cursor: pointer !important;
}

.cursor-pointer:hover {
    color: #007bff; /* Bootstrap primary color */
    transform: scale(1.1);
}

.tooltip-container {
    position: relative;
    display: inline-block;
}
.tooltip-text {
    visibility: hidden;
    width: 80px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -40px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

#passenger-dropdown::-webkit-scrollbar {
    width: 8px; /* Adjust scrollbar width */
}

#passenger-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background color of the track */
    border-radius: 10px;
}

#passenger-dropdown::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e74c3c, #c0392b); box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 10px;
}

#passenger-dropdown::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b); box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


.payment-method-container {
    max-width: 100%;
}

.payment-option {
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.payment-option.active {
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.15);
    border: 1px solid rgba(67, 97, 238, 0.2) !important;
}

.payment-label {
    cursor: pointer;
    transition: all 0.3s;
    background-color: #fff;
}

.payment-label:hover {
    background-color: #f8f9fa;
}

.payment-option.active .payment-label {
    background-color: #f8faff;
    border-bottom: 1px solid rgba(67, 97, 238, 0.1);
}

.payment-icon {
    width: 60x;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.payment-icon-img {
    width: 60px; /* Slightly smaller than container for padding */
    height: 60px;
    object-fit: contain; /* Ensures logo maintains aspect ratio */
  
}

/* .bg-primary-gradient {
    background: linear-gradient(135deg, #f8961e, #f3722c);
} */

.bg-warning-gradient {
    background: linear-gradient(135deg, #f8961e, #f3722c);
}

.bg-info-gradient {
    background:linear-gradient(135deg, #e74c3c, #c0392b);
}

.bg-secondary-gradient {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

/* Base gradient styles */
.bg-gradient-primary { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.bg-gradient-secondary { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); }
.bg-gradient-success { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.bg-gradient-danger { background: linear-gradient(135deg, #f83600 0%, #f9d423 100%); }
.bg-gradient-warning { background: linear-gradient(135deg, #ff8008 0%, #ffc837 100%); }
.bg-gradient-info { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.bg-gradient-indigo { background: linear-gradient(135deg, #5b247a 0%, #1bcedf 100%); }
.bg-gradient-purple { background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%); }
.bg-gradient-pink { background: linear-gradient(135deg, #EC008C 0%, #FC6767 100%); }
.bg-gradient-teal { background: linear-gradient(135deg, #0cebeb 0%, #20e3b2 50%, #29ffc6 100%); }

.payment-title {
    font-size: 1.05rem;
    color: #2a2a2a;
}

.payment-subtitle {
    font-size: 0.82rem;
    color: #6c757d;
}

.payment-arrow {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.payment-suboptions {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    background-color: #f9fafc;
}

.payment-option.active .payment-suboptions {
    max-height: 1000px;
}

.payment-option.active .payment-arrow {
    transform: rotate(180deg);
    color: #4361ee;
}

.suboption {
    position: relative;
    transition: all 0.3s ease;
    background-color: #fff;
}

.suboption:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.suboption-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin: -8px -12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.suboption-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 4px;
}

/* Premium selection styles */
.suboption-radio:checked + .suboption-label {
    background-color: #f0f5ff;
    box-shadow: 0 0 0 2px #d6e4ff;
}

.suboption-radio:checked + .suboption-label .suboption-icon {
    background-color: #e6f0ff;
    box-shadow: 0 0 0 1px #b6d4fe;
}

/* Checkmark for selected suboption */
.suboption-radio:checked + .suboption-label::after {
content: '\f00c';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
position: absolute;
top: 8px;  /* Adjusted to position at the top */
right: 8px; /* Adjusted to position at the right */
color: #4361ee;
font-size: 8px;
background: #fff;
width: 15px;
height: 15px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 0 1px #4361ee;
z-index: 1; /* Ensure it appears above other elements */
}

/* Rounded corners */
.rounded-4 {
border-radius: 12px !important;
/* color: #a0baef; */
}
.rounded-bottom-4 {
border-bottom-left-radius: 12px !important;
border-bottom-right-radius: 12px !important;
}


/* Compact Badge Container */
.booking-date-badge {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    max-width: 100%;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: default;
    color: white;
}

/* Background variants - More subtle */
.bg-departure {
    background: linear-gradient(135deg, #e53935, #c62828);
}

.bg-return {
    background: linear-gradient(135deg, #3949ab, #283593);
}

.bg-arrival {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

/* Compact Icon Style */
.booking-badge-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

/* Compact Content Styling */
.booking-badge-content {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    flex-grow: 1;
}

.booking-badge-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-weight: 700;
    margin-bottom: 1px;
}

.booking-badge-date {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.booking-badge-time {
    font-size: 0.7rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.booking-badge-time i {
    font-size: 0.65rem;
}

/* Subtle Hover Effects */
.booking-date-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.booking-date-badge:hover .booking-badge-icon {
    background-color: rgba(255, 255, 255, 0.25);
}

/* Responsive Design */
@media (max-width: 576px) {
    .booking-date-badge {
        padding: 0.5rem 0.7rem;
        min-width: 160px;
    }
    
    .booking-badge-icon {
        width: 28px;
        height: 28px;
        margin-right: 10px;
        font-size: 0.9rem;
    }
    
    .booking-badge-date {
        font-size: 0.85rem;
    }
    
    .booking-badge-time {
        font-size: 0.65rem;
    }
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}


/* Added only cosmetic enhancements that don't affect functionality */
.border-end-lg {
    border-right: 1px solid #dee2e6;
}
@media (max-width: 991.98px) {
    .border-end-lg {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 1.5rem;
        margin-bottom: 1rem;
    }
}

.suboption-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.suboption-disabled .suboption-label {
    cursor: not-allowed;
}

.suboption-disabled .suboption-icon {
    filter: grayscale(100%);
}

.disabled-channel .suboption-label   {
    background-color: #f1f1f1; /* Lighter background */
    opacity: 0.4;       
}



.unavailable-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 0.7rem;          /* Smaller font */
    font-weight: 700;           /* Semi-bold instead of heavy */
    color: #e74c3c;             /* Slightly softer red */
    opacity: 1;               /* More visible */
    text-transform: uppercase;
    letter-spacing: 1px;        /* Tighter spacing */
    padding: 1px 4px;           /* Smaller padding */
    border: 2px solid #e74c3c;  /* Thinner border */
    border-radius: 3px;         /* Smaller radius */
    background-color:transparent; /* More opaque */
    z-index: 2;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif; /* System font */
    white-space: nowrap;        /* Prevent text wrapping */
}

/* Remove the torn paper effect for minimalism */
.disabled-channel::after {
    display: none;
}

#ASF-notice .modal-content {
    padding: 0;
    border: none;
    border-radius: 0;
    overflow: hidden;
}

#ASF-notice .modal-body {
    padding: 0;
}

#ASF-notice .modal-body img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.check-icon {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #DC4C64;
    color: #ffffff;
    border: 1px solid white;
    border-radius: 50%;
    padding: 2px;
    font-size: 8px;
    z-index: 1;
  }

.dashed-overlay {
    position: relative;
    display: inline-block;
}

.dashed-overlay::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 2px solid #000;
    transform: translateY(-50%);
    pointer-events: none;
}


.btn-downloadTicket {
    position: relative;
    padding: 12px 24px !important;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #a8180d, #d32f2f);
    color: white !important;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 24, 13, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px; /* Better touch target */
}

.btn-downloadTicket:hover {
    color: white !important;
    background: linear-gradient(135deg, #c21807, #e53935);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 24, 13, 0.4);
}

.btn-downloadTicket:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.btn-downloadTicket:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(168, 24, 13, 0.4);
}

.btn-downloadTicket-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-downloadTicket-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-downloadTicket:hover .btn-downloadTicket-icon {
    transform: translateY(-1px);
}

.btn-downloadTicket-text {
    letter-spacing: 0.5px;
}

.btn-downloadTicket-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 60%
    );
    transform: rotate(30deg);
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-downloadTicket:hover .btn-downloadTicket-effect {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
        top: -50%;
    }
    100% {
        left: 150%;
        top: 150%;
    }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .btn-downloadTicket {
        padding: 0px 20px !important; /* More balanced padding */
        font-size: 14px;
        border-radius: 50%; /* Circular button */
        width: 150px; /* Fixed size */
        height: 44px; /* Fixed size */
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }
    
    .btn-downloadTicket-icon {
        font-size: 18px; /* Slightly larger icon */
        margin: 0; /* Remove any margins */
    }
    
    .btn-downloadTicket-text {
        display: flex;
        font-size: 12px;
       
    }
    
    .btn-downloadTicket-content {
        justify-content: center;
        gap: 0;
    }
    
    /* Tooltip for mobile users */
    .btn-downloadTicket::after {
        content: "Download Ticket";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #333;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        opacity: 0;
        transition: opacity 0.3s;
        white-space: nowrap;
        pointer-events: none;
        margin-top: 8px;
    }
    
    .btn-downloadTicket:hover::after {
        opacity: 1;
    }
}
/* Enhanced Alert Styles */
.alert-enhanced {
    border-left: 4px solid #09a3e6;
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.alert-icon {
    font-size: 1.5rem;
    color: #09a3e6;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.alert-heading {
    color: #09a3e6;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.alert-list {
    padding-left: 0;
    margin-bottom: 0;
}

.alert-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    list-style-type: none;
}

.alert-list li:last-child {
    margin-bottom: 0;
}

.alert-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #09a3e6;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .alert-enhanced {
        padding: 1rem;
    }
    
    .alert-icon {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }
}