
body {
    background-image: linear-gradient(to top, #c2ced3, #d0d7dc, #dde0e4, #e9eaec, #f4f4f4);
}

/* ============================================== PAGINATION - Booking ============================================== */

/* Change color of active page number */
.pagination .page-item.active .page-link {
    background-color: black; /* Change this to your desired color */
    border-color: black;
}

/* Change color of pagination numbers */
.pagination .page-link {
    color: #555; /* Change to your desired color */
    border-color: #ddd; /* Optional, to change the border color */
}

/* Change color of pagination numbers on hover */
.pagination .page-link:hover {
    color: #fff; /* Change to your desired color */
    background-color: black; /* Change to your desired hover background color */
    border-color: black; /* Optional, to change the hover border color */
}

/* Optionally, change color of previous/next arrows */
.pagination .page-item .page-link {
    color: black; /* Change to desired color */
}

.pagination .page-item .page-link:hover {
    color: #fff; /* Hover effect color */
}


th {
    white-space: nowrap; /* Prevents header text from wrapping */
}

/* ============================================== AUTH-PAGES ============================================== */

.auth-container {
    min-height: 80vh;
}


/* ============================================== HOME-PAGE ============================================== */

/* marquee */
#marquee {
    overflow: hidden;
    white-space: nowrap;
    background-color: #dde0e4;
    position: relative;
    height: 20px;
}
#marquee #moving-text {
    white-space: nowrap;
    position: absolute;
    opacity: 0;
}
#marquee p {
    font-size: 12.5px;
    color: black;
    padding: 0px;
    margin-bottom: 0px;
}

/* carousel */
.carousel-item img {
    max-height: 500px;
    object-fit: cover;
}

/* call-to-action */
.call-to-action, .contact-us {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;
    width: 80%;
    margin: 40px auto;
    padding: 40px;
}
.call-to-action .left-section, .call-to-action .right-section {
    width: 50%;
    padding: 20px;
}
.call-to-action .right-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-to-action .btn-container {
    text-decoration: none;
}

.call-to-action .btn-primary, .btn-success {
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

.call-to-action .btn-primary:hover, .btn-success:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.call-to-action .btn-lg {
    border-radius: 50px;
}

.call-to-action .shadow-sm {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.call-to-action .hover-shadow:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* contact-us */
.contact-us {
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 10px;
}

/* STYLINGS -> TABLETS AND SMALLER SCREENS */
@media (max-width: 768px) {

    /* homepage styles */
    .call-to-action, .contact-us {
        flex-direction: column;
        width: 100%;
        padding: 0px;
    }
    .call-to-action .left-section, .call-to-action .right-section {
        width: 100%;
        padding: 20px;
    }
}


/* ================================ BOOKING | PROFILE | ADMIN | TRAVEL | PAYMENTS ================================ */

.dashboard, .profile, .settings, .travel, .payments, .notifications {
    width: 80%;
    min-height: 60vh;
    margin: 20px auto;
    box-sizing: border-box;
    overflow-x: hidden;
}

.booking > div, .profile > div, .settings > div, .travel > div, .payments > div, .notifications > div {
    padding: 20px;
    margin: 50px auto;
    margin-right: 5px;
    margin-left: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 10px;
}

/* for accordion in booking */
.booking2 > div {
    padding: 0px; /* changed */
    margin: 45px auto;
    margin-right: 5px;
    margin-left: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 10px;
}


/* STYLINGS -> TABLETS AND SMALLER SCREENS */
@media (max-width: 768px) {

    .dashboard, .profile, .settings, .travel, .payments, .notifications {
        width: 100%;
    }
}


/* ================================ TRAVEL | Sortable.js ================================ */

.sortable-ghost { opacity: 0.6; background: #e9ecef; }
.sortable-drag {
    opacity: 1 !important;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#simpleList .list-group-item {
    cursor: grab;
    user-select: none;
}
#simpleList .list-group-item:active {
    cursor: grabbing;
}


/* ================================ FOOTER ================================ */

footer {
    background-color: #343a40;
    color: #f8f9fa;
    padding: 3rem 0;
}

/* Container Style */
footer .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Row Styles */
footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Section Styles */
footer .col-md-4 {
    width: 30%;
    margin-bottom: 1rem;
}

/* Header and Paragraph Styles */
footer h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

footer p {
    font-size: 0.875rem;
}

/* List Style for Links */
footer .list-unstyled {
    padding: 0;
    list-style: none;
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

footer .list-unstyled a {
    text-decoration: none;
    color: #f8f9fa;
}

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

/* Social Icon Styles */
footer .social-icons a {
    margin-right: 0.5rem;
    display: inline-block;
}

footer .social-icons img {
    margin-top: 10px;
    width: 24px;
    height: 24px;
}

/* Footer Bottom Section */
footer .row.mt-4 {
    margin-top: 2rem;
}

footer .row.mt-4.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

footer .text-center {
    text-align: center;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    footer .col-md-4 {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}
