.dropdown-menu {
            border-radius: 0;
        }

        .pointer {
            cursor: pointer;
        }

        .pull-left {
            float: left;
        }

        .pull-right {
            float: right;
        }

        .pagination-outer svg {
            width: 40px;
        }

        .pagination-outer .flex.justify-between.flex-1.sm\:hidden {
            display: none;
        }

        .pagination-outer .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between {
            justify-content: space-between;
            display: flex;
            align-items: center;
        }

        .pagination-outer .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between p {
            padding-right: 20px;
        }

        .pagination-outer a {
            text-decoration: none;
            font-weight: bold;
            margin: 0 4px 0 0px;
        }

        .pagination-outer span {
            box-shadow: none !important;
        }

        .date {
            margin: auto;
            width: 209px;
            display: block;
            margin: 13px auto;
            font-size: 33px;
            text-align: center;
            font-weight: 600;
            color: #2f8dcb;
        }

        /* HTML: <div class="loader"></div> */

        .loader-outer {
            position: absolute;
            width: 100%;
            height: 100%;
            background: #ffffff;
            top: 0;
            left: 0;
            z-index: 3;
            display: none;
        }


        .loader {
            width: 50px;
            aspect-ratio: 1;
            display: grid;
            border: 4px solid #0000;
            border-radius: 50%;
            border-color: #ccc #0000;
            animation: l16 1s infinite linear;
            margin: auto;
            position: relative;
            top: 40%;
        }

        .loader::before,
        .loader::after {
            content: "";
            grid-area: 1/1;
            margin: 2px;
            border: inherit;
            border-radius: 50%;
        }

        .loader::before {
            border-color: #f03355 #0000;
            animation: inherit;
            animation-duration: .5s;
            animation-direction: reverse;
        }

        .loader::after {
            margin: 8px;
        }

        .card {
            border-radius: 0;
        }

        @keyframes l16 {
            100% {
                transform: rotate(1turn)
            }
        }

        .select2-container {
            /*width: 100% !important;*/
        }

        .login .card {
            position: absolute;
            left: 50%;
            max-width: 600px;
            transform: translate(-50%, -50%);
            top: 50%;
            width: 95%;
        }

        /* Position the submenu */
        .dropdown-submenu {
            position: relative;
        }

        .dropdown-submenu .dropdown-menu {
            display: none;
            /* Hide submenu by default */
            position: absolute;
            top: 0;
            left: 100%;
            margin-left: 0.1rem;
            margin-top: -0.125rem;
            z-index: 1050;
        }

        /* Show the submenu on hover */
        .dropdown-submenu:hover .dropdown-menu {
            display: block;
        }

        .dropdown-submenu .dropdown-toggle:after {
            display: inline-block;
            margin-left: .255em;
            vertical-align: .255em;
            content: "";
            border-top: .3em solid;
            border-right: .3em solid transparent;
            border-bottom: 0;
            border-left: .3em solid transparent;
            rotate: 270deg;
            right: 12px;
            position: absolute;
            top: 12px;
        }

        @media screen and (max-width: 768px) {

            .switch-button,
            .break-out {
                display: none;
            }

        }

        .notification-icon i {
            font-size: 20px;
            color: #939393;
        }

        .notification-icon:hover i {
            color: #555; /* Highlight on hover */
        } 
   
        .notification-icon .badge {
            padding: 2px 4px;
            line-height: 1;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            top: 6px;
            left: 30px;
        }

        .bday-image-container img.rounded-circle {
            border-radius: 50% !important;
            object-fit: cover;
            width: 100px;
            height: 100px;
        }

        /* Dropdown container */
.notification-dropdown {
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
    white-space: normal;
}

/* Individual notification box */
.notification-item {
    padding: 12px 14px;
    margin-bottom: 8px;
    background-color: #f8f9fa;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    font-size: 0.875rem;
    line-height: 1.4;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

/* Title */
.notification-title {
    font-weight: 600;
    margin-bottom: 4px;
}

/* Timestamp */
.notification-time {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Message/body content */
.notification-body {
    margin-top: 6px;
    word-break: break-word;
    white-space: normal;
}

.refresh-page {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 23px;
    color: #858585;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, .15);
    padding: 5px 9px 0px 10px;
    line-height: 34px;
    vertical-align: middle;
    border-radius: 6px;
}



 .switch-button {
            background: #2b85c059;
            border-radius: 30px;
            overflow: hidden;
            width: 240px;
            text-align: center;
            font-size: 18px;
            letter-spacing: 1px;
            color: #155fff;
            position: relative;
            padding-right: 120px;
            position: relative;
            margin: auto;
        }

        .switch-button:before {
            content: "Time in";
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            width: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            pointer-events: none;
            color: #ffffff;
        }

        .switch-button-checkbox {
            cursor: pointer;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 2;
        }

        .switch-button-checkbox:checked+.switch-button-label:before {
            transform: translateX(120px);
            transition: transform 300ms linear;
        }

        .switch-button-checkbox+.switch-button-label {
            position: relative;
            padding: 15px 0;
            display: block;
            user-select: none;
            pointer-events: none;
        }

        .switch-button-checkbox+.switch-button-label:before {
            content: "";
            background: #3498db;
            background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
            background-image: -moz-linear-gradient(top, #3498db, #2980b9);
            background-image: -ms-linear-gradient(top, #3498db, #2980b9);
            background-image: -o-linear-gradient(top, #3498db, #2980b9);
            background-image: linear-gradient(to bottom, #3498db, #2980b9);
            height: 100%;
            width: 100%;
            position: absolute;
            left: 0;
            top: 0;
            border-radius: 30px;
            transform: translateX(0);
            transition: transform 300ms;
        }

        .switch-button-checkbox+.switch-button-label .switch-button-label-span {
            position: relative;
            color: white;
        }

        #counter {
            font-size: 50px;
            font-weight: 600;
            margin: auto;
            width: 350px;
            padding: 0 10px;
            text-align: center;
        }

        .refresh-page{
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 35px;
            color: #595c5ff0;
            cursor: pointer;
        }

        .refresh-page-mobile {
            display: none;
            
        }

        .upcomingbdays {
            background-color: #f8fafc;
            padding: 10px;
            border: 1px solid #ccced0;
        }

        .upcomingbdays p {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 12px;
            color: black;
        }

        .birthday-item {
            margin-bottom: 4px;
            padding: 4px 7px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: transform 0.2s ease;
            background-color: #f8fafc;
            border: 1px solid #ccced0;
        }

        .birthday-item .font-weight-bold {
            font-size: 16px;
        }

        .text-muted {
            font-size: 0.9rem;
            color: #777;
        }

        .border-bottom-only {
            border: none;
            border-bottom: 1px dashed #ccc;

        }

        .border-bottom-only:last-child {
            border: none !important;
        }

        h5,
        .h5 {
            font-size: 13px;
        }

        h4,
        .h4 {
            font-size: 19px;
        }

        h3,
        .h3 {
            font-size: 16px;
        }

        @media (max-width: 768px) {
            .upcomingbdays {
                padding: 12px;
            }

            .birthday-item {
                padding: 6px 10px;
            }
        }

        .bday-today {
            font-weight: bold;
            color: #45bb60;
            font-size: 15px;
            background-color: #d5dfd3;
            padding: 2px 10px;
            border-radius: 5px;
        }


        #birthdayPopup,
        #anniversaryPopup {
            background-color: rgb(0, 0, 0);
            color: white;
            padding: 40px 60px;
            border-radius: 20px;
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 9999;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            animation: fadeIn 0.6s ease-in-out;
            border: 3px solid #fff;
            width: 80%;
            max-width: 600px;
        }

        .popup-message {
            margin: 0;
            font-size: 30px;
            font-family: 'Comic Sans MS', sans-serif;
            line-height: 1.5;
            color: #fff;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }

        .bday-name {
            margin-top: 15px;
            font-size: 40px;
            font-family: 'Pacifico', cursive;
            color: #FF4081;
            font-weight: bold;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
        }

        .sub-message {
            margin-top: 15px;
            font-size: 20px;
            font-weight: normal;
            opacity: 0.9;
            color: #fff;
            font-family: 'Comic Sans MS', sans-serif;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        @keyframes confetti {
            0% {
                transform: translateX(0) translateY(0);
                opacity: 1;
            }

            100% {
                transform: translateX(300px) translateY(500px);
                opacity: 0;
            }
        }

        .close-popup-btn {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 40px;
            color: #fff;
            cursor: pointer;
            background: transparent;
            border: none;
            transition: color 0.3s ease;
            font-family: 'Comic Sans MS', sans-serif;
        }

        .close-popup-btn:hover {
            color: #f44336;
            transform: scale(1.2);
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translate(-50%, -60%);
            }

            100% {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        .bday-gif-container {
            position: relative;
            display: inline-block;
        }

        .bday-emoji-gif {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background-image: url(/emoji.gif);
            background-size: cover;
            background-color: transparent;
            background-repeat: no-repeat;
        }

        .bday-image-container {
            position: relative;
            display: inline-block;
        }

        .bday-cone-img {
            position: absolute;
            top: -14px;
            left: 12px;
            width: 65px;
            height: 66px;
            background-image: url(/bdayCone.png);
            background-size: cover;
            background-color: transparent;
            background-repeat: no-repeat;
            transform: rotate(-8deg);
        }

        .custom-card {
            /* border-radius: 12px; */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 15px 0px 0px 0px;
            background-color: rgb(255, 255, 255);
            margin-bottom: 20px;
            border: 1px solid #ccced0;
        }

        .custom-card .icon-custom {
            background-color: #e9f7f7;
            border-radius: 50%;
            padding: 15px;
            color: #17a2b8;
        }

        .custom-card .fa-calendar-check {
            color: #17a2b8;
        }

        .custom-card .fa-clock {
            color: #ffc107;
        }

        .custom-card-title {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .custom-card-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 8px;
        }

        .custom-card-subtitle {
            font-size: 0.875rem;
            color: #777;
        }

        @media (max-width: 768px) {
            .custom-card {
                padding: 12px;
            }

            .custom-card .icon-custom {
                padding: 10px;
            }

            .custom-card-title {
                font-size: 0.95rem;
            }

            .custom-card-number {
                font-size: 2.2rem;
            }
        }


        /* Holiday Calendar */
        /* Add these new calendar styles */
        .calendar-container {
            border: 1px solid #e0e0e0;
            padding: 15px;
            background-color: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .calendar-container h5 {
            color: #333;
            margin-bottom: 5px;
            font-weight: 600;
        }

        #holiday-datepicker {
            border: none;
            padding: 0;
            margin-bottom: 15px;
        }

        .holiday-details {
            max-height: 150px;
            overflow-y: auto;
            border-top: 1px solid #eee;
            padding-top: 10px;
        }

        .holiday-details::-webkit-scrollbar {
            width: 5px;
        }

        .holiday-details::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .holiday-details::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 5px;
        }

        .holiday-details .list-group {
            margin: 0;
        }

        .holiday-details .list-group-item {
            padding: 0px;
            font-size: 10px;
            border: none;
            border-bottom: 1px dashed #eee;
            background: transparent;
        }

        .holiday-details .list-group-item:hover {
            cursor: default;
        }

        .holiday-details .list-group-item span {
            font-size: 10px;
        }

        .holiday-details .list-group-item:last-child {
            border-bottom: none;
        }

        /* Customize the datepicker */
        .ui-datepicker {
           /* width: 100% !important;*/
            font-size: 13px;
        }

        .ui-datepicker .ui-datepicker-header {
            /*display: none;*/
        }

        .ui-datepicker table {
            margin: 0;
        }

        .ui-datepicker th {
            padding: 5px;
            font-weight: 600;
            color: #666;
        }

        .ui-datepicker td {
            padding: 1px;
        }

        .ui-datepicker td a {
            text-align: center;
            border-radius: 4px;
            padding: 5px;
        }

        .highlight-holiday a {
            background-color: #2c86c2 !important;
            color: #ffffff !important;
            font-weight: 600 !important;
        }

        .ui-state-default,
        .ui-widget-content .ui-state-default,
        .ui-widget-header .ui-state-default,
        .ui-button,
        html .ui-button.ui-state-disabled:hover,
        html .ui-button.ui-state-disabled:active,
        .ui-state-active,
        .ui-widget-content .ui-state-active,
        .ui-widget-header .ui-state-active,
        .ui-widget-content .ui-state-hover,
        a.ui-button:active,
        .ui-button:active,
        .ui-button.ui-state-active:hover,
        .ui-state-hover,
        .ui-widget-content .ui-state-hover,
        .ui-widget-header .ui-state-hover,
        .ui-state-focus,
        .ui-widget-content .ui-state-focus,
        .ui-widget-header .ui-state-focus,
        .ui-button:hover,
        .ui-button:focus {
            border: 1px solid #c5c5c540;
            cursor: default;
            background: #f6f6f6;
            font-weight: normal;
            color: #454545;
        }

    .px-xs-3 {
        padding-left: 0px ;
        padding-right: 0px ;
    }


@media (max-width: 600px ) { 

    a.navbar-brand img {
        width: 194px;
    }
    /*.refresh-page {
        position: fixed;
        right: 74px;
        top: 17px;
        font-size: 21px;
        padding: 1px 13px 0 13px;
    }*/
    .refresh-page {
        display: none;
    }
     .refresh-page-mobile {
        display: block;
        font-size: 21px;
        padding: 1px 13px 0 13px;
        color: rgba(0, 0, 0, .65);
        background-color: transparent;
        border: 1px solid rgba(0, 0, 0, .15);
        border-radius: .375rem;
        transition: box-shadow .15s ease-in-out;


    }

    .px-xs-3 {
        padding-left: 13px ;
        padding-right: 12px ;
    }
    .col-6:nth-child(n) {
        width: 48.5%; 
    }
    .col-6:nth-child(2n) {
        margin-left: 10px;
    }
    .menubtnitems {
        display: flex;
        gap: 7px;
    }

    .row>* {
        padding: 0;
    }

}