html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Custom styles for the search bar */
.search-bar-container {
    background-color:white ;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}

    .search-bar-container .nav-tabs {
        border: none;
        margin-bottom: 20px;
    }

        .search-bar-container .nav-tabs .nav-item .nav-link {
            border: none;
            color: #005496;
            font-weight: 600;
            border-radius: 0;
        }

            .search-bar-container .nav-tabs .nav-item .nav-link.active {
                background-color: #005496;
                color: white;
            }

    .search-bar-container .form-group label {
        font-size: 14px;
        font-weight: 600;
        color: #333;
    }

    .search-bar-container .form-control {
        border-radius: 8px;
        border: 1px solid #ddd;
        padding: 12px 15px;
        font-size: 14px;
    }

        .search-bar-container .form-control:focus {
            border-color: #005496;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

    .search-bar-container .btn {
        background-color: #005496;
        color: white;
        font-weight: 600;
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 16px;
        margin-top: 15px;
    }

        .search-bar-container .btn:hover {
            background-color: #0056b3;
        }

/* Date picker style adjustments */
.flatpickr-calendar {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flatpickr-day {
    border-radius: 50%;
}

/* Tab content styling */
.search-bar-container .tab-pane {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 600px) {

    #divCheckout {
        display:inline-block !important;
    }

    #divPaxDetails
    {
        width:100% !important;
       
    }

    #divBookingSummary {
        width: 100% !important;
        margin-top: 10px;
    }

}

input[type="file"] {
    outline: none;
    padding: 2px;
    margin: 0px;
}

input[type="file"]:focus-within::file-selector-button,
input[type="file"]:focus::file-selector-button {
    outline: 1px solid #0964b0;
    outline-offset: 1px;
}

input[type="file"]::before {
    top: 10px;
}

input[type="file"]::after {
    top: 9px;
}

/* ------- From Step 2 ------- */

input[type="file"] {
    position: relative;
}

    input[type="file"]::file-selector-button {
        width: 136px;
        color: transparent;
    }

    /* Faked label styles and icon */
    input[type="file"]::before {
        position: absolute;
        pointer-events: none;
        /*   top: 11px; */
        left: 40px;
        color: #0964b0;
        content: "Upload File";
    }

    input[type="file"]::after {
        position: absolute;
        pointer-events: none;
        /*   top: 10px; */
        left: 16px;
        height: 20px;
        width: 20px;
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230964B0'%3E%3Cpath d='M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zM7 9l1.41 1.41L11 7.83V16h2V7.83l2.59 2.58L17 9l-5-5-5 5z'/%3E%3C/svg%3E");
    }

    /* ------- From Step 1 ------- */

    /* file upload button */
    input[type="file"]::file-selector-button {
        border-radius: 4px;
        padding: 0 10px;
        height: 30px;
        cursor: pointer;
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.16);
        box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
        margin-right: 10px;
        transition: background-color 200ms;
    }

        /* file upload button hover state */
        input[type="file"]::file-selector-button:hover {
            background-color: #f3f4f6;
        }

        /* file upload button active state */
        input[type="file"]::file-selector-button:active {
            background-color: #e5e7eb;
        }


#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    display: none; /* Hidden by default */
    z-index: 9999; /* Ensure it stays on top of other elements */
    justify-content: center;
    align-items: center;
    display: flex; /* Using flexbox for easy centering */
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.8); /* Light gray background of spinner */
    border-top: 4px solid #3498db; /* Blue color for the spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite; /* Spin animation */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

