﻿.hideme {
    display: none !important;
}

.active {
    background-color: green;
    color: white;
}

.page-content-wrapper {
    margin: 10em 3em 10em 2em;
}

.list-group-item {
    color: #2a2a2a;
    background-color: #1796eb !important;
    border: 1px solid #ddd;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: #1796eb !important;
}

.btn-searchpnr {
    margin-top: 2.1rem !important;
}

header {
    margin-left: 0px;
    border: 0px !important;
}

.sidebar {
    min-width: 250px;
    max-width: 250px;
    background-color: #1796eb !important;
    color: rgb(0, 0, 0);
    position: relative;
    height: 100%;
    border-top-right-radius: 1300px;
    border-bottom-right-radius: 1250px;
    top: 0px;
    left: 0px;
    overflow-y: auto;
    z-index: 100;
    transition: 0.3s;
    border-right: 1px solid rgb(221, 221, 221);
    padding-top: 100px !important;
}

.submenustyle {
    background-color: #37b6ff !important;
}

.submenu {
    background-color: #87CEEB !important;
}

header .navbar-brand {
    color: #ffffff;
    background-color: #1796eb !important;
}

.newbodybg {
    background-color: #7392a2;
}


.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: white !important;
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}

/*Sample Page CSS*/
/* Hide scrollbar for Chrome, Safari and Opera */
.dvsample {
    overflow: auto;
    max-height: 500px;
    white-space: pre;
    border: 1px solid;
    background-color: gainsboro;
}

    .dvsample::-webkit-scrollbar {
        display: none;
    }

/* Hide scrollbar for IE, Edge and Firefox */
.dvsample {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/*Login Page CSS*/


.loginbody {
    margin: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #6e45e2, #88d3ce);
    overflow: hidden;
}

.h2Login {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}



.containerLogin {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-out;
    margin: 0px auto;
}


.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #666;
        font-size: 14px;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        outline: none;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus {
            border-color: #6e45e2;
        }

    .form-group a {
        color: #6e45e2;
        text-decoration: none;
        font-size: 14px;
    }

        .form-group a:hover {
            text-decoration: underline;
        }

.footer {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

.newbodybgLogin {
    background-color: transparent !important;
}

/*----------------------*/
@media (min-width: 768px) {
    .navmenu_container {
        visibility: hidden;
    }
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed !important;
        overflow: hidden !important;
    }
}


/*Hamburger Nav Menu*/
.navmenu_container {
    display: inline-block;
    cursor: pointer;
}

.navmenu_bar1, .navmenu_bar2, .navmenu_bar3 {
    width: 35px;
    height: 5px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.4s;
}

/*Set hamburger symbol*/

.navmenu_bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.navmenu_bar2 {
    opacity: 0;
}

.navmenu_bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

/*Set Cross symbol*/
.change .navmenu_bar1 {
    transform: translate(0, 0px) rotate(0deg);
}

.change .navmenu_bar2 {
    opacity: 99;
}

.change .navmenu_bar3 {
    transform: translate(0, 0px) rotate(0deg);
}

/*.change .navmenu_bar1 .navmenu_bar2 .navmenu_bar3 {
    transition: 0.4s;
    opacity: 99;
}*/

/*.change .sidebar {
    position: absolute !important;
    overflow: hidden !important;
}*/

/*-------------------------------------*/


.heading {
    background: #e7e7e7;
    color: #000;
    /*font-size: 20.8px;*/
    padding: 8px 15px;
}

/* My Booking Button Styling */
.my-booking-btn {
    background-color: #28a745;
    color: white;
    border: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .my-booking-btn:hover {
        background-color: #218838;
        color: #f8f9fa;
        text-decoration: none;
    }
