    /* Google Font Link */
    @import url('https://fonts.googleapis.com/css2?family=Fleur+De+Leah&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

    /* General Reset */
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    body {
        display: flex;
        background-color: #f4f4f9;
        color: #333;
        flex-direction: column;
    }

    /* ------- Login Form ------ */

    .login-body{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #b1a8a1;
    }

    .authentication{
        padding: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Poppins", sans-serif;
        min-height: 100vh;
    }

    .login-container {
    position: relative;
    max-width: 850px;
    width: 100%;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 5px 10px rgb(35,38,20);
    perspective: 2700px;
    }

    .login-container .cover {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 50%;
    z-index: 98;
    transition: all 1s ease;
    transform-origin: left;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    }

    .login-container #flip:checked ~ .cover {
    transform: rotateY(-180deg);
    }

    .login-container #flip:checked ~ .forms .login-form {
    pointer-events: none;
    }

    .login-container .cover .front,
    .login-container .cover .back {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    }

    .login-container .cover .back {
    transform: rotateY(180deg);
    }

    .login-container .cover img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 10;
    }


    .login-container .forms {
    height: 100%;
    width: 100%;
    background: #fff;
    }

    .login-container .form-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

    .login-container .form-content .login-form,
    .login-container .form-content .Admin-form {
    width: calc(100% / 2 - 25px);
    }

    .login-container .form-content .Admin-form {
        padding-left: 2rem;
    }

    .login-container .forms .form-content .title {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #333;
    }

    .login-container .forms .form-content .title:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 25px;
    background: #736444;
    }

    .login-container .forms .Admin-form .title:before {
    width: 20px;
    }

    .login-container .forms .form-content .input-boxes {
    margin-top: 30px;
    }

    .login-container .forms .form-content .input-box {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: 10px 0;
    position: relative;
    }

    .login-container .form-content .input-box input {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    }

    .login-container .form-content .input-box input:focus,
    .login-container .form-content .input-box input:valid {
    border-color: #736444;
    }

    .login-container .form-content .input-box i {
    position: absolute;
    color: #736444;
    font-size: 17px;
    }

    .login-container .forms .form-content .text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    }

    .login-container .forms .form-content .text a {
    text-decoration: none;
    color: #594632;
    }

    .login-container .forms .form-content .text a:hover {
    text-decoration: underline;
    }

    .login-container .forms .form-content .button {
    color: #fff;
    margin-top: 40px;
    }

    .login-container .forms .form-content .button input {
    color: #fff;
    background: #736444;
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    }

    .login-container .forms .form-content .button input:hover {
    background: #594632;
    }

    .login-container .forms .form-content label {
    color: #594632;
    cursor: pointer;
    }

    .login-container .forms .form-content label:hover {
    text-decoration: underline;
    }

    .login-container .forms .form-content .login-text,
    .login-container .forms .form-content .Admin-login, .user-login {
    text-align: center;
    margin-top: 25px;
    }

    .login-container #flip {
    display: none;
    }

    .login-container .copy-btn {
        background-color: white;
        box-shadow: 0 5px 5px rgba(35, 38, 20, 0.699);
        -o-border-radius: 3px;
        color: black;
        min-width: 5rem;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
}
    
    .login-container .copy-btn i {
        color: white;
    }
    
    .login-container .copy-btn:hover {
        background-color: rgba(128, 128, 128, 0.418);
    }
    
    .login-container .copy-btn:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }
    

    @media (max-width: 730px) {
    .login-container .cover {
        display: none;
    }

    .login-container .form-content .login-form,
    .login-container .form-content .Admin-form {
        width: 100%;
    }

    .login-container .form-content .Admin-form {
        display: none;
    }

    .login-container #flip:checked ~ .forms .Admin-form {
        display: block;
    }

    .login-container #flip:checked ~ .forms .login-form {
        display: none;
    }
    }


    /*--------Demo Notification --------*/
        .notification-background{
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 0.5rem;
        }

        .notification {
            display: flex;
            flex-direction: column;
            isolation: isolate;
            position: relative;
            max-width: 50rem;
            height: auto;
            background: #29292cc7;
            border-radius: 1rem;
            padding-bottom: 0.5rem;
            overflow: hidden;
            font-family: 'Libre Baskerville', 'Lora', sans-serif;
            font-size: 17px;
            --gradient: linear-gradient(to bottom, #2eadff, #3d83ff, #7e61ff);
            --color: #32a6ff
        }
        
        .notification:before {
            position: absolute;
            content: "";
            inset: 0.0625rem;
            border-radius: 0.9375rem;
            background: #18181bd7;
            z-index: 2
        }
        
        .notification:after {
            position: absolute;
            content: "";
            width: 0.25rem;
            inset: 0.65rem auto 0.65rem 0.5rem;
            border-radius: 0.125rem;
            background: var(--gradient);
            transition: transform 300ms ease;
            z-index: 4;
        }
        
        .notification:hover:after {
            transform: translateX(0.15rem)
        }
        
        .notititle {
            color: var(--color);
            padding: 0.65rem 0.25rem 0.4rem 1.25rem;
            font-weight: 500;
            font-size: 1.2rem;
            transition: transform 300ms ease;
            z-index: 5;
        }
        
        .notification:hover .notititle {
            transform: translateX(0.15rem)
        }
        
        .notibody {
            color: rgb(238, 237, 237);
            padding: 0 1.25rem;
            transition: transform 300ms ease;
            z-index: 5;
        }
        
        .notification:hover .notibody {
            transform: translateX(0.25rem)
        }
        
        .notiglow,
        .notiborderglow {
            position: absolute;
            width: 20rem;
            height: 20rem;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle closest-side at center, white, transparent);
            opacity: 0;
            transition: opacity 300ms ease;
        }
        
        .notiglow {
            z-index: 3;
        }
        
        .notiborderglow {
            z-index: 1;
        }
        
        .notification:hover .notiglow {
            opacity: 0.1
        }
        
        .notification:hover .notiborderglow {
            opacity: 0.1
        }
        
        .note {
            color: var(--color);
            position: fixed;
            top: 80%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            font-size: 0.9rem;
            width: 75%;
        }

        /* Style the close button */
        .notification .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10; /* Ensure it is on top of other content */
        }

        .notification .close-btn:hover {
            color: #ff4444; /* Change color when hovering */
        }

        /*----Admin Login Notification ------*/

        /* Positioning the info icon in the top-right corner */
        .login-container .info-icon {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
            background-color: #736444; /* Light background for visibility */
            border-radius: 50%;
            padding: 10px;
            z-index: 15;
            transition: background-color 0.3s;
        }

        .login-container .info-icon:hover {
            background-color: #594632;
        }

        /* Styling for the info message box */
        .login-container .info-message {
            position: absolute;
            top: 30px; /* Adjust as needed */
            left: 92%; /* Position to the right of the info icon */
            margin-left: 10px; /* Space between the icon and the message */
            background-color: #29292c;
            color: white;
            padding: 10px;
            border-radius: 5px;
            font-size: 14px;
            max-width: 250px;
            display: none; /* Hidden by default */
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            z-index: 10; /* Ensures message appears above other content */
            transition: opacity 0.3s ease;
        }

        .login-container .info-message p {
            margin: 0;
        }

        .login-container .info-message a {
            color: #f0f0f0;
            text-decoration: underline;
        }

        .login-container .info-message:hover {
            background-color: #1c1c1c;
        }

        /* Optional: Style for smooth fading in/out effect */
        .login-container .info-message.show {
            opacity: 1;
            display: block;
        }

        .login-container .info-message.hide {
            opacity: 0;
            display: none;
        }

        /* Success Message Styles */
            .success {
                font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
                width: 280px;
                padding: 12px;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: start;
                background: #EDFBD8;
                border-radius: 8px;
                border: 1px solid #84D65A;
                box-shadow: 0px 0px 5px -3px #111;
            }
            
            .success__icon {
                width: 20px;
                height: 20px;
                transform: translateY(-2px);
                margin-right: 8px;
            }
            
            .success__icon path {
                fill: #84D65A;
            }
            
            .success__title {
                font-weight: 500;
                font-size: 14px;
                color: #2B641E;
            }
            
            .success__close {
                width: 20px;
                height: 20px;
                cursor: pointer;
                margin-left: auto;
            }
            
            .success__close path {
                fill: #2B641E;
            }
            
        /* Error Messages */
            .error {
                font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
                width: 320px;
                padding: 12px;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                background: #EF665B;
                border-radius: 8px;
                box-shadow: 0px 0px 5px -3px #111;
                display: none; /* Hidden by default */
            }

            .error__icon {
                width: 20px;
                height: 20px;
                transform: translateY(-2px);
                margin-right: 8px;
            }

            .error__icon path {
                fill: #fff;
            }

            .error__title {
                font-weight: 500;
                font-size: 14px;
                color: #fff;
            }

            .error__close {
                width: 20px;
                height: 20px;
                cursor: pointer;
                margin-left: auto;
            }

            .error__close path {
                fill: #fff;
            }


/* ------- Shift Details ----------- */
        .shift-deeds {
            font-family: "Poppins", sans-serif;
            line-height: 1.6;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f4f4f4;
        }

        .shift-deeds .container {
            width: 90%;
            max-width: 900px;
            min-height: 36rem;
            background-color: #b1a8a1;
            margin: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }

        /* Header Section */
        .shift-deeds .header {
            background-color: #594632;  /* Dark coffee brown */
            color: #fff;
            padding: 20px;
            min-height: 15rem;
            text-align: center;
            font-size: 1.8rem;
        }

        .shift-deeds .container {
            display: flex;
            flex-direction: column;
        }

        .shift-deeds .body {
            background-color: #b1a8a1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Card Section */
        .shift-deeds .card {
            background-color: white;
            width: 80%;
            height: 90%;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.911);
            margin-top: -120px;
            border-radius: 10px;
        }

        .shift-deeds .card h2 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 20px;
        }

        /* Form Styles */
        .shift-deeds form {
            display: flex;
            flex-direction: column;
        }

        .shift-deeds .form-group {
            margin-bottom: 15px;
            display: flex;
        }

        .shift-deeds .form-group label {
            font-weight: bold;
            margin-bottom: 5px;
            width: 8rem;
        }

        .shift-deeds .form-group input {
            padding: 8px;
            font-size: 1rem;
            border: 1px solid #ccc;
            background-color: #f0f0f0;
            border-radius: 4px;
        }

        .shift-deeds .form-group input[type="text"]{
            width: 26rem;
        }

        .shift-deeds .form-group .checkbox{
            width: 26rem;
        }
        .shift-deeds .shift-form-btn{
            display: flex;
            justify-content: center;
            width: 100%;
            gap: 10px;
        }

        .shift-deeds .backsy, .shift-deeds .submit{
            width: 50%;
        }

        .shift-deeds .backsy{
            background-color: white;
            color: #594632;
            border: 2px solid #594632;
        }

        .shift-deeds form button {
            background-color: #594632;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
        }

        .shift-deeds form button:disabled {
            background-color: #888;
            cursor: not-allowed;
        }

        /* Styling for Readonly Inputs */
        .shift-deeds form input[readonly] {
            background-color: #f0f0f0;
            cursor: not-allowed;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .shift-deeds .container {
                width: 95%;
            }

            .shift-deeds .header h1 {
                font-size: 1.5rem;
            }

            .shift-deeds .card h2 {
                font-size: 1.2rem;
            }
        }

/* ------ Main Thing ------- */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.dashboard-container {
    font-family: 'Roboto', sans-serif;
    display: flex;
    overflow-x: hidden;
    font-size: 1rem;
}

p {
    font-family: 'Roboto', sans-serif; 
}

/* Side Navbar */
.navbar {
    width: 15.625rem; /* 250px */
    background: linear-gradient(135deg, #333, #666);
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s;
    z-index: 100;
}

.navbar.closed {
    width: 0;
    overflow: hidden;
}

.navbar .close-btn-container{
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem;
    padding-bottom: 0.01rem;
}

.navbar .close-btn {
    background: rgba(0, 0, 0, 0.562);
    box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 4px, rgba(0, 0, 0, 0.5) 0px 7px 13px -3px, rgba(0, 0, 0, 0.4) 0px -3px 0px inset;
    border: 1px solid black;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0.5rem;
    color: white;
    font-size: 1.875rem; /* 30px */
    cursor: pointer;
    position: relative;
    left: 12rem;
}

.navbar .close-btn :hover{
    color: red;
}

.navbar .close-btn span{
    position: relative;
    top: -0.5rem;
    cursor: pointer;
}

.header .hamburger {
    display: none;
    font-size: 1.6rem;
    font-weight: 900;
    color: black;
    padding: 0.3rem 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.header .hamburger:hover{
    color: #46468f;
}


/* Navbar Content Styling */
.navbar .navbarContents{
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 2rem;
    font-family: Fleur De Leah;
    color: #ffd700; /* Gold neon effect */
    text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700, 0 0 30px #ffd700;
    margin-bottom: 20px;
}

.navbar nav ul {
    list-style: none;
    padding-left: 0;
    width: 100%;
}

.navbar nav ul li {
    margin: 15px 0;
    transition: all 0.3s ease;
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    background: #3b2c2a;
    transition: all 0.3s ease;
}

.navbar nav ul li a {
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.3); 
    border-radius: 12px;
}

.navbar nav ul li a:hover {
    background-color: #9b7f6f;
    transform: translateX(10px); /* Slight right movement on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Active Nav Item */
.navbar nav ul li.active a {
    background: linear-gradient(145deg, #d4af37, #b68e2e);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15), -4px -4px 10px rgba(255, 255, 255, 0.1);
    color: #fff;
}

.navbarContents .time-display {
    text-align: center;
    color: white;
}

.navbarContents #clock {
    font-size: 24px;
    margin-bottom: 5px;
}

.navbarContents #date {
    font-size: 16px;
}

/* Main Content Area */
.main-content {
    margin-left: 15.625rem; /* 250px */
    width: calc(100% - 15.625rem); /* 100% - 250px */
    height: auto;
    transition: margin-left 0.3s, width 0.3s;
}

.main-content.closed, .header.closed {
    margin-left: 0;
    width: 100%;
}

.header {
    position: fixed;
    display: flex;
    width: calc(100% - 15.625rem);
    justify-content: space-between;
    align-items: center;
    background-color: #f1f1f1;
    color: #050505;
    padding: 0 1.25rem; /* 20px */
    height: 3.125rem; /* 50px */
    font-family: 'Roboto', sans-serif;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    z-index: 20;
}

.header .shiftAndMenu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .user {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2); /* semi-transparent white background */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px); /* blur effect */
    border-radius: 10px; /* rounded corners */
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* subtle shadow */
    position: relative; /* Needed for dropdown positioning */
    cursor: pointer; /* Indicate it's clickable */
}

.header .user img {
    border-radius: 50%;
    width: 1.875rem; /* 30px */
    height: 1.875rem; /* 30px */
    margin-left: 0.625rem; /* 10px */
}

.header .dropbtn{
    border: none;
    font-size: 1.15rem;
}

/* Dropdown content */
.header .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    min-width: 160px;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    top: 100%; /* Position dropdown below the user section */
    left: 0; /* Align it with the left edge of the user section */
    margin-top: 10px; /* Space between user section and dropdown */
}

/* Show dropdown content when user section is hovered or clicked */
.header .user:hover .dropdown-content,
.header .user.open .dropdown-content {
    display: block;
}

.header .dropdown-content a {
    color: black;
    padding: 8px;
    text-decoration: none;
    display: block;
}

.header .dropdown-content a:hover {
    background-color: #ddd;
}


/* Body Content */
.main-content .body-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 3.2rem;
    overflow-y: auto;
}

.main-content .notice-board {
    background-color: #f1f1f1; /* Light grey */
    padding: 20px;
    box-shadow: rgba(50, 50, 93, 0.151) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.212) 0px 18px 36px -18px inset;
}

.main-content .notice-board .notice-board-tag{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.main-content .notice-board .notice-board-tag .box {
    width: 50%;
    min-width: 250px;
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    height: auto;
    position: relative;
    border-radius: 5px;
    background: linear-gradient(to right, #46468f 35%, #888cc9 100%);
    margin-bottom: 40px;
    /*padding: 15px 25px 0 40px;
    /*color: darkslategray;*/
    font-family: 'Lora', serif;
    padding: 1rem;
    box-shadow: 1px 2px 1px -1px #474747;
    transition: background 200ms ease-in-out;
}

.main-content .notice-board .notice-board-tag .box:hover {
    background: linear-gradient(to right, #3a3a7c 0%, #8186cc 100%);
}

.main-content .notice-board .notice-board-tag .box .circle-container{
    width: 10%;
}

.main-content .notice-board .notice-board-tag .box .h2-container{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Lora', serif;
}

.main-content .notice-board .notice-board-tag .box h2{
    color: #f1ebeb;
    font-family: 'Lora', serif;
    font-size: 1.9rem;
}

.main-content .notice-board .notice-board-tag .shadow {
    position: relative;
}

.main-content .notice-board .notice-board-tag .shadow::before {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 13px;
    right: 7px;
    width: 25%;
    top: 0;
    box-shadow: 0 15px 10px #474747;
    transform: rotate(4deg);
    transition: all 150ms ease-in-out;
}

.main-content .notice-board .notice-board-tag .shadow:hover::before {
    transform: rotate(0deg);
    bottom: 20px;
    z-index: -10;
}

.main-content .notice-board .notice-board-tag .circle {
    border-radius: 50%;
    box-shadow: inset 1px 1px 1px 0px rgba(0, 0, 0, .5), inset 0 0 0 25px #e9e9e9;
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* Grid layout for the cards in the Notice Board */
.main-content .notice-board .card-container {
    padding-top: 1rem;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.main-content .notice-board .card {
    background-color: white;
    min-width: 250px;
    min-height: 200px;
    padding: 1.5rem;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.342);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    /*transform: rotate(-1.5deg); /* Slight tilt for the pinned paper effect */
}

.main-content .notice-board .card .pin-parent-container{
    height: 15%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-text{
    height: 85%;
}


.main-content .notice-board .card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    padding-top: 5px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
}

.main-content .notice-board .card p {
    font-size: 1.3rem;
    line-height: 1.85rem;
    color: #252525;
    text-align: left;
}

/* Card Pin */
.pin-image-container {
    position: relative;
    top: -1rem;
    
}

/* Previous Shift Section */
.main-content .previous-shift {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

/* Report Header */
.Report-title {
    background-color: #f8f8f8; /* Background color */
    padding: 40px; /* Padding for spacing */
    border-bottom: 2px solid #ddd; /* Bottom border */
}

.Report-title .current{
    padding: 20px;
}

/* Title (Heading) */
.Report-title h1 {
    font-family: 'Lora', serif; /* Font family for the title */
    font-size: 3rem; /* Font size for the title */
    margin-bottom: 20px; /* Margin below the title */
    color: #333; /* Title text color */
    text-align: center; /* Center the title */
}

/* Layout for details section below the title */
.Report-title .details-wrapper {
    display: flex; /* Use flexbox for the layout */
    justify-content: space-between; /* Align left and right sections with space between */
    align-items: flex-start; /* Align items at the top */
    font-size: 1.1rem; /* Font size for the details */
    color: #555; /* Text color */
}

/* Left-aligned section: Author, Previous Shift, Floating Date */
.Report-title .details-left {
    display: flex; /* Stack items vertically */
    flex-direction: column; /* Stack vertically */
    align-items: flex-start; /* Align items to the left */
}

.Report-title .details-left span,  .Report-title .details-right span{
    display: inline-block; /* Make each span block level for spacing */
    margin: 5px 0; /* Margin between each line */
}

/* Right-aligned section: Total Extremely Urgent, Total Action Required */
.Report-title .details-right {
    display: flex; /* Stack items vertically */
    flex-direction: column; /* Stack vertically */
    align-items: flex-end; /* Align to the right */
    text-align: right; /* Align text to the right */
}

/* Optional: Styling for icons */
.Report-title .fa-circle-exclamation {
    color: #e60a41; /* Color for the exclamation icon */
}

.Report-title .fa-tasks {
    color: #713af1; /* Color for the tasks icon */
}

/* Responsive Design */
@media (max-width: 768px) {
    .Report-title h1 {
        font-size: 2.2rem; /* Adjust font size for smaller screens */
    }

    .Report-title .details-wrapper {
        flex-direction: column; /* Stack sections vertically on small screens */
        align-items: flex-start; /* Align left on smaller screens */
    }

    .Report-title .details-left {
        margin-bottom: 10px; /* Space between left and right sections */
    }

    .Report-title .details-right {
        margin-bottom: 10px; /* Space between left and right sections */
    }
}

/* Choice Cards */
.choice-cards{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.choice-cards .category-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.479);
}

.choice-cards p{
    font-style: italic;
}

/* Footer Section */
footer {
    background-color: #f1f1f1;
    color: #050505;
    font-family: 'Roboto', sans-serif;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: 1rem;
    text-align: center;
    margin-top: 50px;
    width: 100%;
}

footer .footer-content {
    /*max-width: 1200px;*/
    width: 100%;
    margin: 0 auto;
}

footer p {
    font-size: 1rem;
    margin-bottom: 20px;
}

footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .footer-links a {
    margin: 10px 0;
}

/* Button Styling */
footer .button {
    cursor: pointer;
    font-size: 1rem;
    border-radius: 16px;
    border: none;
    padding: 2px;
    background: radial-gradient(circle 80px at 80% -10%, #ffffff, #181b1b);
    position: relative;
    transition: background 0.3s, transform 0.3s;
}

footer .button:hover {
    transform: scale(0.98);
}

footer .button::after {
    content: "";
    position: absolute;
    width: 65%;
    height: 60%;
    border-radius: 120px;
    top: 0;
    right: 0;
    box-shadow: 0 0 20px #ffffff38;
    z-index: -1;
    transition: box-shadow 0.3s;
}

footer .button:hover::after {
    box-shadow: 0 0 10px #ffffff18;
}

footer .blob1 {
    position: absolute;
    width: 70px;
    height: 100%;
    border-radius: 16px;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle 60px at 0% 100%, #3fe9ff, #0000ff80, transparent);
    box-shadow: -10px 10px 30px #0051ff2d;
    transition: background 0.3s, box-shadow 0.3s;
}

footer .button:hover .blob1 {
    box-shadow: -5px 5px 20px #000;
}

footer .inner {
    padding: 14px 25px;
    border-radius: 14px;
    color: #fff;
    z-index: 3;
    position: relative;
    background: radial-gradient(circle 80px at 80% -50%, #777777, #0f1111);
    transition: background 0.3s;
    display: flex;
    align-items: center; /* Aligns the icon and text */
}

footer .button:hover .inner {
    background: radial-gradient(circle 80px at 80% -50%, #333333, #0f0f0f);
}

footer .inner i {
    font-size: 1rem; /* Adjust icon size */
}

footer .inner::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 14px;
    background: radial-gradient(circle 60px at 0% 100%, #00e1ff1a, #0000ff11, transparent);
    position: absolute;
    transition: opacity 0.3s;
}

footer .button:hover .inner::before {
    opacity: 0;
}

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
    footer {
        padding: 30px 20px;
    }

    footer .footer-links {
        flex-direction: column;
        align-items: center;
    }

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


/* ---- Calendar -----*/
.calendar-body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    color: #333;
}

.calendar-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

/* Header with Image and Month-Year Strip */
.calendar-container .header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 17rem; /* Header height of 15rem */
    width: 100%;
    margin-bottom: 30px;
    color: white;
}

/* Image section */
.calendar-container .hotel-image {
    flex: 1; /* Image takes up all available space */
    height: 100%; /* Fill the height of the header */
    /*width: auto;*/
    max-width: 100%; /* Prevents image from stretching beyond its container */
    object-fit: cover; /* Ensures the image covers the space without distorting */
}

/* Month-year strip */
.calendar-container .month-year-strip {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes content to top and bottom */
    padding: 20px;
    background-color: #2f4b60;
    color: #fff;
    flex-basis: 200px; /* Let it take 200px width or any space available */
}

.calendar-container .month-year-strip h1 {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 5px;
    font-family: Fleur De Leah;
}

.calendar-container #month-year {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: auto; /* Pushes month-year to the bottom */
}

/* Button for back to dashboard */
.calendar-container .back-to-dashboard {
    margin-top: -12px; /* Push it below the image */
    display: inline-block; /* Ensures the button only takes up its normal width */
    text-decoration: none;
}

.calendar-container .back-to-dashboard button {
    /*color: #fff;*/
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}


/* Toggle Button Styling (From Uiverse.io by Custyyyy) */
.calendar-container .toggle {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: -45px; /* Slightly above the calendar */
    margin-bottom: 10px; /* Optional: Adds some space below the toggle button */
}

.calendar-container .back-to-dashboard button, .toggle button {
    align-items: center;
    appearance: none;
    background-color: #fcfcfd;
    border-radius: 4px;
    border-width: 0;
    box-shadow:
        rgba(45, 35, 66, 0.2) 0 2px 4px,
        rgba(45, 35, 66, 0.15) 0 7px 13px -3px,
        #d6d6e7 0 -3px 0 inset;
    box-sizing: border-box;
    color: #36395a;
    cursor: pointer;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    line-height: 1;
    padding-left: 16px;
    padding-right: 16px;
    text-align: left;
    text-decoration: none;
    transition:
        box-shadow 0.15s,
        transform 0.15s;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 18px;
}

.calendar-container .back-to-dashboard button, .toggle button:focus {
    box-shadow:
        #d6d6e7 0 0 0 1.5px inset,
        rgba(45, 35, 66, 0.4) 0 2px 4px,
        rgba(45, 35, 66, 0.3) 0 7px 13px -3px,
        #d6d6e7 0 -3px 0 inset;
}

.calendar-container .back-to-dashboard button, .toggle button:hover {
    box-shadow:
        rgba(45, 35, 66, 0.3) 0 4px 8px,
        rgba(45, 35, 66, 0.2) 0 7px 13px -3px,
        #d6d6e7 0 -3px 0 inset;
    transform: translateY(-2px);
}

.calendar-container .back-to-dashboard button, .toggle button:active {
    box-shadow: #d6d6e7 0 3px 7px inset;
    transform: translateY(2px);
}

/* Calendar styles */
.calendar-container .calendar {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.274);
}

.calendar-container .days-of-week {
    font-family: Libre Baskerville;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: bold;
    margin-bottom: 10px;
    background-color: #e8f1f7;
    border-radius: 8px;
}

.calendar-container .days-of-week span {
    text-align: center;
    padding: 12px;
    background-color: #2f4b60;
    color: white;
    border-radius: 5px;
}

/* Sunday background in the days-of-week strip */
.calendar-container .days-of-week span:nth-child(1) {
    background-color: red; /* Red background for 'Sun' */
}

.calendar-container .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.calendar-container .day-button {
    position: relative;
    padding: 10px 10px;
    background-color: #ecf0f1;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.253);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calendar-container .day-button:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.322);
}

.calendar-container .day-button .date-number {
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #2f4b60;
}

.calendar-container .day-button .button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.calendar-container .day-button .event-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 12px;
    font-size: 14px;
    color: black;
    background-color: #fff;
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1), inset 2px 2px 5px rgba(255, 255, 255, 0.7);
    border: none;
}

.calendar-container .day-button .event-button:hover {
    background-color: #f1f2f6;
}

.calendar-container .event-button:nth-child(1) {
    background-color: #fffae6; /* Light yellow, morning */
}

.calendar-container .event-button:nth-child(2) {
    background-color: #e0f7fa; /* Light blue, afternoon */
}

.calendar-container .event-button:nth-child(3) {
    background-color: #83c3f088; /* Light purple, night */
}

/* Highlight today's date */
.calendar-container .highlight-today .date-number {
    background-color: #2f4b60;
    color: white;
    border-radius: 50%;
    padding: 8px 12px;
}

/* Only the Sunday date numbers should be red */
.calendar-container .sunday .date-number {
    color: red !important; /* Red color for Sunday date numbers */
}

/* ------- Category Cards -------- */

.category-body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f4f4f9;
    padding: 20px;
    font-family: Lora;
}

.wrapper {
    max-width: 1090px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Automatically adjusts the number of columns */
    gap: 20px; /* Add space between the cards */
    margin: auto;
}

.wrapper .category-card {
    background: #fff;
    padding: 30px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.479);
}

.category-card .category-section {
    display: flex;
    justify-content: center;
}

.category-card .category-section{
    display: flex;
    justify-content: center;
}

.category-section .category-area{
    height: 120px;
    width: 120px;
    background: #ffd861;
    border-radius: 50%;
    padding: 2px;
}

.category-section .category-area .inner-area{
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    color: #fff;
    line-height: 117px;
    text-align: center;
    position: relative;
}

.category-area .inner-area .text{
    font-size: 25px;
    font-weight: 400;
    position: absolute;
    top: -10px;
    left: 17px;
}

.category-area .inner-area .category{
    font-size: 55px;
    font-weight: 500;
}

.category-card .package-name{
    width: 100%;
    height: 2px;
    background: #ffecb3;
    margin: 35px 0;
    position: relative;
}

.category-card .package-name::before{
    position: absolute;
    content: "Guest Requests";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    font-size: 25px;
    padding: 0 10px;
    font-weight: bolder;
}

.category-card .features li{
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-family: Roboto;
}

.features li .list-name{
    font-size: 17px;
    font-weight: 400;
}

.features li .icon{
    font-size: 15px;
}

.features li .icon.check{
    color: #713af1;
}


.category-card .btn{
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.category-card .btn button{
    width: 80%;
    height: 50px;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inner-area{
    background: #ffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-area img{
    width: 4rem;
    height: 4rem;
}

/* Arrivals /Departures */
.arrive-depart .category-area,

.arrive-depart .btn button{
    background: #fff;
    color: #94836d;
    border: 2px solid #94836d;
}

.arrive-depart .btn button:hover{
    border-radius: 6px;
    background: #94836d;
    color: #fff;
}

/* Guest Request */
.guest .category-area,

.guest .btn button{
    background: #fff;
    color: #57381Dff; /* Cafe Noir */
    border: 2px solid #57381Dff;
}

.guest .btn button:hover{
    border-radius: 6px;
    background: #57381Dff;
    color: #fff;
}

/* Complaints */

.Complaints .category-area,

.Complaints .btn button{
    background: #fff;
    color: #6A4524ff;
    border: 2px solid #6A4524ff;
}

.Complaints .btn button:hover{
    border-radius: 6px;
    background:#6A4524ff;
    color: #fff;
}

/* Check-outs */
.Check-outs .category-area,

.Check-outs .btn button{
    background: #fff;
    color: #CABA9C;
    border: 2px solid #CABA9C;
}

.Check-outs .btn button:hover{
    border-radius: 6px;
    background: #CABA9C;
    color: #fff;
}

/* Rearrangements */
.Rearrangements .category-area,

.Rearrangements .btn button{
    background: #fff;
    color: #026e72;
    border: 2px solid #026e72;
}

.Rearrangements .btn button:hover{
    border-radius: 6px;
    background: #026e72;
    color: #fff;
}

/* Shuttle */
.Shuttle .category-area,

.Shuttle .btn button{
    background: #fff;
    color: #545435ff;
    border: 2px solid #545435ff;
}

.Shuttle .btn button:hover{
    border-radius: 6px;
    background: #545435ff;
    color: #fff;
}

/* Money */
.Money .category-area,

.Money .btn button{
    background: #fff;
    color: #4C6444;
    border: 2px solid #4C6444;
}

.Money .btn button:hover{
    border-radius: 6px;
    background: #4C6444;
    color: #fff;
}

/* Security */
.Security .category-area,

.Security .btn button{
    background: #fff;
    color: #A08C75ff;
    border: 2px solid #A08C75ff;
}

.Security .btn button:hover{
    border-radius: 6px;
    background: #A08C75ff;
    color: #fff;
}

/* Lost */
.Lost .category-area,

.Lost .btn button{
    background: #fff;
    color: #402915ff;
    border: 2px solid #402915ff;
}

.Lost .btn button:hover{
    border-radius: 6px;
    background: #402915ff;
    color: #fff;
}

/* Staff-Related */
.Staff-Related .category-area,

.Staff-Related .btn button{
    background: #fff;
    color: #9F6D3Dff;
    border: 2px solid #9F6D3Dff;
}

.Staff-Related .btn button:hover{
    border-radius: 6px;
    background: #9F6D3Dff;
    color: #fff;
}

/* Management */
.Management .category-area,

.Management .btn button{
    background: #fff;
    color: #7E7766ff;
    border: 2px solid #7E7766ff;
}

.Management .btn button:hover{
    border-radius: 6px;
    background: #7E7766ff;
    color: #fff;
}

/* Maintenance */
.Maintenance .category-area,

.Maintenance .btn button{
    background: #fff;
    color: #201C14ff;
    border: 2px solid #201C14ff;
}

.Maintenance .btn button:hover{
    border-radius: 6px;
    background: #201C14ff;
    color: #fff;
}

/* IT */
.IT .category-area,

.IT .btn button{
    background: #fff;
    color: #8A6240;
    border: 2px solid #8A6240;
}

.IT .btn button:hover{
    border-radius: 6px;
    background: #8A6240;
    color: #fff;
}

/* Inventory */
.Inventory .category-area,

.Inventory .btn button{
    background: #fff;
    color: #102820;
    border: 2px solid #102820;
}

.Inventory .btn button:hover{
    border-radius: 6px;
    background: #102820;
    color: #fff;
}

/* Miscellaneous */
.Miscellaneous .category-area,

.Miscellaneous .btn button{
    background: #fff;
    color: #3C230Aff;
    border: 2px solid #3C230Aff;
}

.Miscellaneous .btn button:hover{
    border-radius: 6px;
    background: #3C230Aff;
    color: #fff;
}


/* Category Background Colors */

.arrive-depart .package-name{
    background: #94836d;
}

.guest .package-name{
    background: #57381Dff;
}

.Complaints .package-name{
    background: #6A4524ff;
}

.Check-outs .package-name{
    background: #CABA9C;
}

.Rearrangements .package-name{
    background: #026e72;
}

.Shuttle .package-name{
    background: #545435ff;
}

.Money .package-name{
    background: #4C6444;
}

.Security .package-name{
    background: #A08C75ff;
}

.Lost .package-name{
    background: #402915ff;
}

.Staff-Related .package-name{
    background: #9F6D3Dff;
}

.Management .package-name{
    background: #7E7766ff;
}

.Maintenance .package-name{
    background: #201C14ff;
}

.IT .package-name{
    background: #8A6240;
}

.Inventory .package-name{
    background: #102820;
}

.Miscellaneous .package-name{
    background: #3C230Aff;
}

/* Category Names */

.arrive-depart .package-name::before{
    content: "Arrivals / Departures";
}

.guest .package-name::before{
    content: "Guest Requests";
}

.Complaints .package-name::before{
    content: "Complaints / Refunds";
}

.Check-outs .package-name::before{
    content: "Check-outs (Early/Late)";
}

.Rearrangements .package-name::before{
    content: "Room assignments / Rearrangements";
}

.Shuttle .package-name::before{
    content: "Shuttle Service";
}

.Money .package-name::before{
    content: "Money / Billing";
}

.Security .package-name::before{
    content: "Security Incidents";
}

.Lost .package-name::before{
    content: "Lost & Found";
}

.Staff-Related .package-name::before{
    content: "Staff-Related Concerns";
}

.Management .package-name::before{
    content: "Special Management Requests";
}

.Maintenance .package-name::before{
    content: "Maintenance";
}

.IT .package-name::before{
    content: "IT/Technical Issues";
}

.Inventory .package-name::before{
    content: "Inventory";
}

.Miscellaneous .package-name::before{
    content: "Miscellaneous";
}

/* More on backgrounds*/

.guest ::selection,
.guest .category-area,
.guest .inner-area{
    border: 2px solid #94836d;
}

.guest ::selection,
.guest .category-area,
.guest .inner-area{
    border: 2px solid #57381Dff;
}

.Complaints ::selection,
.Complaints .category-area,
.Complaints .inner-area{
    border: 2px solid #6A4524ff;
}

.Check-outs ::selection,
.Check-outs .category-area,
.Check-outs .inner-area{
    border: 2px solid #CABA9C;
}

.Rearrangements ::selection,
.Rearrangements .category-area,
.Rearrangements .inner-area{
    border: 2px solid #026e72;
}

.Shuttle ::selection,
.Shuttle .category-area,
.Shuttle .inner-area{
    border: 2px solid #545435ff;
}

.Money ::selection,
.Money .category-area,
.Money .inner-area{
    border: 2px solid #4C6444;
}

.Security ::selection,
.Security .category-area,
.Security .inner-area{
    border: 2px solid #A08C75ff;
}

.Lost ::selection,
.Lost .category-area,
.Lost .inner-area{
    border: 2px solid #402915ff;
}

.Staff-Related ::selection,
.Staff-Related .category-area,
.Staff-Related .inner-area{
    border: 2px solid #9F6D3Dff;
}

.Management ::selection,
.Management .category-area,
.Management .inner-area{
    border: 2px solid #7E7766ff;
}

.Maintenance ::selection,
.Maintenance .category-area,
.Maintenance .inner-area{
    border: 2px solid #201C14ff;
}

.IT ::selection,
.IT .category-area,
.IT .inner-area{
    border: 2px solid #8A6240;
}

.Inventory ::selection,
.Inventory .category-area,
.Inventory .inner-area{
    border: 2px solid #102820;
}

.Miscellaneous ::selection,
.Miscellaneous .category-area,
.Miscellaneous .inner-area{
    border: 2px solid #3C230Aff;
}

.choice-cards .wrapper .category-card {
    background: #fff;
    padding: 15px; /* Reduced padding */
    position: relative;
    border-radius: 6px; /* Reduced border radius */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); /* Reduced shadow */
}

.choice-cards .category-card .category-section {
    display: flex;
    justify-content: center;
}

.choice-cards .category-section .category-area {
    height: 80px; /* Reduced size */
    width: 80px;  /* Reduced size */
    background: #ffd861;
    border-radius: 50%;
    padding: 1px; /* Reduced padding */
}

.choice-cards .category-section .category-area .inner-area {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 2px solid #fff; /* Reduced border */
    color: #fff;
    line-height: 75px; /* Reduced line height */
    text-align: center;
    position: relative;
}

.choice-cards .category-area .inner-area .text {
    font-size: 18px; /* Reduced font size */
    font-weight: 400;
    position: absolute;
    top: -5px; /* Adjusted position */
    left: 12px; /* Adjusted position */
}

.choice-cards .category-area .inner-area .category {
    font-size: 30px; /* Reduced font size */
    font-weight: 500;
}

.choice-cards .category-card .package-name {
    width: 100%;
    height: 1px; /* Reduced height */
    background: #ffecb3;
    margin: 15px 0; /* Reduced margin */
    position: relative;
}

.choice-cards .category-card .package-name::before {
    position: absolute;
    content: "Guest Requests";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    font-size: 18px; /* Reduced font size */
    padding: 0 8px; /* Reduced padding */
    font-weight: bolder;
}

.choice-cards .category-card .features li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px; /* Reduced margin */
    font-family: Roboto;
}

.choice-cards .features li .list-name {
    font-size: 14px; /* Reduced font size */
    font-weight: 400;
}

.choice-cards .features li .icon {
    font-size: 12px; /* Reduced icon size */
}

.choice-cards .features li .icon.check {
    color: #713af1;
}

.choice-cards .category-card .btn {
    display: flex;
    justify-content: center;
    margin-top: 15px; /* Reduced margin */
}

.choice-cards .category-card .btn button {
    width: 60%; /* Reduced button width */
    height: 40px; /* Reduced button height */
    font-weight: 700;
    color: #fff;
    font-size: 16px; /* Reduced font size */
    border: none;
    outline: none;
    border-radius: 20px; /* Reduced border radius */
    cursor: pointer;
    transition: all 0.3s ease;
}

.choice-cards .inner-area {
    background: #ffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choice-cards .inner-area img {
    width: 3rem; /* Reduced image size */
    height: 3rem; /* Reduced image size */
}

/* Arrivals / Departures */
.choice-cards .arrive-depart .category-area,
.choice-cards .arrive-depart .btn button {
    background: #fff;
    color: #94836d;
    border: 1px solid #94836d; /* Reduced border width */
}

.choice-cards .arrive-depart .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #94836d;
    color: #fff;
}

/* Guest Request */
.choice-cards .guest .category-area,
.choice-cards .guest .btn button {
    background: #fff;
    color: #57381Dff;
    border: 1px solid #57381Dff; /* Reduced border width */
}

.choice-cards .guest .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #57381Dff;
    color: #fff;
}

/* Complaints */
.choice-cards .Complaints .category-area,
.choice-cards .Complaints .btn button {
    background: #fff;
    color: #6A4524ff;
    border: 1px solid #6A4524ff; /* Reduced border width */
}

.choice-cards .Complaints .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #6A4524ff;
    color: #fff;
}

/* Check-outs */
.choice-cards .Check-outs .category-area,
.choice-cards .Check-outs .btn button {
    background: #fff;
    color: #CABA9C;
    border: 1px solid #CABA9C; /* Reduced border width */
}

.choice-cards .Check-outs .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #CABA9C;
    color: #fff;
}

/* Rearrangements */
.choice-cards .Rearrangements .category-area,
.choice-cards .Rearrangements .btn button {
    background: #fff;
    color: #026e72;
    border: 1px solid #026e72; /* Reduced border width */
}

.choice-cards .Rearrangements .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #026e72;
    color: #fff;
}

/* Shuttle */
.choice-cards .Shuttle .category-area,
.choice-cards .Shuttle .btn button {
    background: #fff;
    color: #545435ff;
    border: 1px solid #545435ff; /* Reduced border width */
}

.choice-cards .Shuttle .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #545435ff;
    color: #fff;
}

/* Money */
.choice-cards .Money .category-area,
.choice-cards .Money .btn button {
    background: #fff;
    color: #4C6444;
    border: 1px solid #4C6444; /* Reduced border width */
}

.choice-cards .Money .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #4C6444;
    color: #fff;
}

/* Security */
.choice-cards .Security .category-area,
.choice-cards .Security .btn button {
    background: #fff;
    color: #A08C75ff;
    border: 1px solid #A08C75ff; /* Reduced border width */
}

.choice-cards .Security .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #A08C75ff;
    color: #fff;
}

/* Lost */
.choice-cards .Lost .category-area,
.choice-cards .Lost .btn button {
    background: #fff;
    color: #402915ff;
    border: 1px solid #402915ff; /* Reduced border width */
}

.choice-cards .Lost .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #402915ff;
    color: #fff;
}

/* Staff-Related */
.choice-cards .Staff-Related .category-area,
.choice-cards .Staff-Related .btn button {
    background: #fff;
    color: #9F6D3Dff;
    border: 1px solid #9F6D3Dff; /* Reduced border width */
}

.choice-cards .Staff-Related .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #9F6D3Dff;
    color: #fff;
}

/* Management */
.choice-cards .Management .category-area,
.choice-cards .Management .btn button {
    background: #fff;
    color: #7E7766ff;
    border: 1px solid #7E7766ff; /* Reduced border width */
}

.choice-cards .Management .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #7E7766ff;
    color: #fff;
}

/* Maintenance */
.choice-cards .Maintenance .category-area,
.choice-cards .Maintenance .btn button {
    background: #fff;
    color: #201C14ff;
    border: 1px solid #201C14ff; /* Reduced border width */
}

.choice-cards .Maintenance .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #201C14ff;
    color: #fff;
}

/* IT */
.choice-cards .IT .category-area,
.choice-cards .IT .btn button {
    background: #fff;
    color: #8A6240;
    border: 1px solid #8A6240; /* Reduced border width */
}

.choice-cards .IT .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #8A6240;
    color: #fff;
}

/* Inventory */
.choice-cards .Inventory .category-area,
.choice-cards .Inventory .btn button {
    background: #fff;
    color: #102820;
    border: 1px solid #102820; /* Reduced border width */
}

.choice-cards .Inventory .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #102820;
    color: #fff;
}

/* Miscellaneous */
.choice-cards .Miscellaneous .category-area,
.choice-cards .Miscellaneous .btn button {
    background: #fff;
    color: #3C230Aff;
    border: 1px solid #3C230Aff; /* Reduced border width */
}

.choice-cards .Miscellaneous .btn button:hover {
    border-radius: 4px; /* Reduced border radius */
    background: #3C230Aff;
    color: #fff;
}

/* Category Background Colors */
.choice-cards .arrive-depart .package-name { background: #94836d; }
.choice-cards .guest .package-name { background: #57381Dff; }
.choice-cards .Complaints .package-name { background: #6A4524ff; }
.choice-cards .Check-outs .package-name { background: #CABA9C; }
.choice-cards .Rearrangements .package-name { background: #026e72; }
.choice-cards .Shuttle .package-name { background: #545435ff; }
.choice-cards .Money .package-name { background: #4C6444; }
.choice-cards .Security .package-name { background: #A08C75ff; }
.choice-cards .Lost .package-name { background: #402915ff; }
.choice-cards .Staff-Related .package-name { background: #9F6D3Dff; }
.choice-cards .Management .package-name { background: #7E7766ff; }
.choice-cards .Maintenance .package-name { background: #201C14ff; }
.choice-cards .IT .package-name { background: #8A6240; }
.choice-cards .Inventory .package-name { background: #102820; }
.choice-cards .Miscellaneous .package-name { background: #3C230Aff; }

/* Category Names */
.choice-cards .arrive-depart .package-name::before { content: "Arrivals / Departures"; }
.choice-cards .guest .package-name::before { content: "Guest Requests"; }
.choice-cards .Complaints .package-name::before { content: "Complaints / Refunds"; }
.choice-cards .Check-outs .package-name::before { content: "Check-outs (Early/Late)"; }
.choice-cards .Rearrangements .package-name::before { content: "Room assignments / Rearrangements"; }
.choice-cards .Shuttle .package-name::before { content: "Shuttle Service"; }
.choice-cards .Money .package-name::before { content: "Money / Billing"; }
.choice-cards .Security .package-name::before { content: "Security Incidents"; }
.choice-cards .Lost .package-name::before { content: "Lost & Found"; }
.choice-cards .Staff-Related .package-name::before { content: "Staff-Related Concerns"; }
.choice-cards .Management .package-name::before { content: "Special Management Requests"; }
.choice-cards .Maintenance .package-name::before { content: "Maintenance"; }
.choice-cards .IT .package-name::before { content: "IT/Technical Issues"; }
.choice-cards .Inventory .package-name::before { content: "Inventory"; }
.choice-cards .Miscellaneous .package-name::before { content: "Miscellaneous"; }

/* More on backgrounds */
.choice-cards .guest ::selection,
.choice-cards .guest .category-area,
.choice-cards .guest .inner-area {
    border: 1px solid #94836d; /* Reduced border width */
}

.choice-cards .category-card .checkmark-circle {
    position: absolute;
    top: 10px; /* Adjust the position from the top */
    right: 10px; /* Adjust the position from the right */
    width: 30px; /* Circle width */
    height: 30px; /* Circle height */
    background-color: green; /* Green background */
    border-radius: 50%; /* Make it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* White checkmark */
    font-size: 16px; /* Adjust checkmark size */
    font-weight: bold; /* Bold checkmark */
    border: 2px solid white; /* Optional: White border around the circle */
}

.choice-cards .category-card .checkmark-circle::before {
    content: "✔"; /* Unicode for the checkmark */
    font-size: 18px; /* Adjust checkmark size */
    line-height: 1;
}

