         /* container */
        /* no records found */ 
        .norecord-found span{
                text-align: center;
                display: block;
                font-size: 32px;
        }
        /* nav-tabs nav-link*/ 
        .nav-tabs {
            border-bottom: 2px solid #104455;
            /*padding: 10px;*/
        }
         .nav-link {
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            font-size: 12px;
            text-align: center;
            text-transform: uppercase;
            color: #3d3d3d;
            font-weight: 500;
            -webkit-transition: none;
            -o-transition: none;
            transition: none;
            border-radius: 2px 2px 0 0;
            padding-left: 0;
            padding-right: 0;
            cursor: pointer;
            text-decoration: none;
            outline: none;
        }
        @media (min-width: 768px) {
             .nav-link {
                font-size: 18px;
            }
        }
        .nav-link {
            display: block;
            padding: 0.5rem 1rem;
        }
         .nav-link.active {
            background: #104455;
            border-color: #104455;
            color: #fff;
            text-decoration: none;
            outline: none;
        }
        .nav-link.active:focus {
            border-color: #104455;
            text-decoration: none;
            outline: none;
        }
         .nav-link:hover:not(.active) {
            background: #46c1be;
            border-color: #46c1be;
            color: #fff;
            text-decoration: none;
            outline: none;
        }
        .voyager .nav-tabs, .voyager .nav-tabs>li>a:hover {background-color: white !important;}
        .nav {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
        }
        /*raw class*/
        a, a:hover, a:focus, .btn.btn-primary{
            text-decoration: none;
            outline: none;
            cursor: pointer;
        }
        .wait {
            position: relative;
            z-index: 99999;
            display: block;
            text-align: center;
        }
        .wait img{
            width:75px;
        } 
        .wait-paginate {
            position: relative;
            z-index: 99999;
            display: block; 
            top: 37px;
            left: -58px;
        }
        .wait-paginate img{
            width:25px;
        }
          
        ul,li {list-style: none;} 

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh; 
        }

        .container {
            display: flex;
            width: 100%;
            gap: 20px;
            flex-grow: 1;
            padding: 20px;
        }

        /* Header */
        header { 
            background-color: #007bff;
            color: white;
            padding: 20px;
            text-align: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            margin-right: 15px;
        }

        .site-title {
            font-size: 24px;
            font-weight: bold;
        }

        .see-all{
            color: #555;
            display: inline-block;
            font-size: 16px; 
            text-align: right;
        }

        .see-all>i {
            font-size: 14px; 
        }

        /* Logout */
        .navbar .dropdown.profile .dropdown-menu {
            position: static !important;
        }

        /* Sidebar */
        .sidebar {
            width: 30%;
            padding: 20px;
            /*background-color: #f4f4f4;*/
            flex-shrink: 0;
        }

        /* Content Section */
        .content {
            width: 70%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Content Box */
        .content-box {
            border: 1px solid #ddd;
            padding: 20px;
            display: flex;
            flex-direction: column;
            background-color: #fff;
            margin-bottom: 7px;
        }

        /* Header (Image and Title) */
        .content-header {
            display: flex;
            gap: 15px;
            align-items: center;
            margin-bottom: 15px;
        }

        .image {
            width: 150px;
            height: 150px;
            margin-right: 20px;
        }

        /* Title, Subtitle, Date */
        .content-title {
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .content-subtitle {
            font-size: 16px;
            color: #555;
            margin-top: 5px;
        }

        .content-date {
            font-size: 14px;
            color: #777;
            margin-top: 10px;
        }

        .content-description {
            font-size: 14px;
            margin-top: 10px;
            color: #666;
        }

        /* Buttons */
        .button-container {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center; /* Center align vertically */
        }

        .btn-a {
          display: inline-block;
          padding: 10px 20px;
          font-size: 1.2em;
          color: white;
          background-color: #46c1be;
          text-decoration: none;
          border-radius: 5px;
          border: 2px solid transparent;
          transition: background-color 0.3s ease, border-color 0.3s ease;
        }

        .clr {
            background-color: #104455 !important;
        }

        .btn-a:hover { 
          color: white;
        }

        .btn-a:active {
          background-color: #003d80;
          color: white;
        }

        /*Date Boxes*/
        .text-onsale { 
            display: inline-block;
            padding: 10px 20px;
            font-size: 1.2em;
            text-decoration: none;
            border-radius: 5px;
            border: 1px solid #F8CA6E;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }
        .text-countdown {
            display: inline-block;
            padding: 10px 20px;
            font-size: 1.2em;
            text-decoration: none;
            border-radius: 5px;
            border: 1px solid #078CB5;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }

        .text-expired {
            font-size: 18px;
            border: 1px solid red !important;
            padding: 12px 20px !important;
        }

        /*calendar class*/
        .bst-time-zone, .ist-time-zone, .myWeeklyCalendarJ {
            margin: 10px 0 0 0;
            position: relative;
            display: flex;
            flex-direction: column;
            min-width: 0px;
            overflow-wrap: break-word;
            background-color: rgb(255, 255, 255);
            background-clip: border-box;
            border-radius: 2rem;
            padding: 12px; 
        } 

        /* Sidebar Styling */ 

        /* Calendar Container */
        .calendar {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            padding: 20px;
            border: 1px solid #e4e4e4;
            border-radius: 2rem;
            text-align:center;
        }

        /* Month and Year Display */
        .month-year {
            color: #3d3d3d;
            font-size: 18px;
            font-weight: normal;
            text-align: center;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        /* Navigation Buttons */
        .navigation {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        button {
            padding: 10px;
            background-color: #104455;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        button i {
            font-size: 1.2em;
        }

        button:hover {
            background-color: #0056b3;
        }

        /* Weekdays Container */
        .week {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        /* Active Day Styling */
        .active-day {
            background-color: #007bff; /* Highlight color */
            color: white; /* Make text white for better contrast */
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
            transform: scale(1.1); /* Slightly enlarge active day */
            border: 2px solid #0056b3; /* Add a darker blue border for definition */
        }

        .has-event {
            background-color: #007bff; /* Highlight color */
            color: #0d87ea; /* Make text white for better contrast */
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
            transform: scale(1.1); /* Slightly enlarge active day */
            border: 2px solid #F8CA6E; /* Add a darker blue border for definition */
        }

        /* Default Day Styling (unchanged) */
        .day { 
            padding: 10px;
            text-align: center;
            background-color: #f0f4f7;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        /* Day hover effect remains unchanged */
        .day:hover {
            background-color: #d6ecff;
            transform: scale(1.05);
        }

        /* Day Name Styling */
        .day-name {
            font-size: 1em;
            font-weight: bold;
            color: #333;
        }

        /* Date Styling */
        .date {
            font-size: 1.5em;
            margin-top: 5px;
            color: #007bff; /* Default date color */
        }

        /* Loader Style */
        /* Loader Styles */
        .loader-container {
            position: fixed; /* Sticks the loader to the viewport */
            top: 50%;
            left: 40%;
            transform: translate(-50%, -50%); /* Centers the loader */
            display: none; /* Hidden initially */
            z-index: 1000; /* Make sure it's on top of other content */
        }

        .loader {
            border: 8px solid #f3f3f3; /* Light gray */
            border-top: 8px solid #3498db; /* Blue */
            border-radius: 50%;
            width: 60px; /* Loader size */
            height: 60px; /* Loader size */
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loader:after {
            background-color: rgba(0, 0, 0, 0);
        }

        /* Loader Spin Animation */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        
        .bst-border {
            border: 1px solid #F8CA6E;
        }
        .ist-border {
            border: 1px solid #078CB5;
        }
        .text-center iframe{
            width: 100%;
        }

        /* Footer */
        footer {
            background-color: #007bff;
            color: white;
            text-align: center;
            padding: 0;
            position: relative;
            bottom: 0;
            width: 100%;
        }

        .btn {
            width: 100px;
        }

        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .container {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                margin: 0px;
                padding: 0px;
            }

            .content {
                width: 100%;
            } 
            .btn-a {
                padding: 8px 15px;
                font-size: 1em;
            }

            .button-container {
                display: inline;
                text-align: center;
            }
        }

        @media (min-width: 1024px) { 
            .sidebar{ 
                width: auto;
                padding: 0px;   
            }
            .day {
                padding: 5px;
                box-shadow: none;
            }
        }

        @media screen and (max-width: 768px) {
            .content-header {
                flex-direction: column;
                align-items: flex-start;
            }

            /*.content-header img {
                width: 80px;
                height: 80px;
            }*/
            .button-container {
                display: inline;
                text-align: center;
            }

            .btn-a {
                padding: 6px 12px;
                font-size: 0.9em;
                display: block;
           }

            .image {  
                max-width: 300px;
                height: auto;
                margin: 0 auto;
            }

           .text-onsale, .text-countdown {
            display: block;
           }

            .sidebar {
                width: 100%;
                height: auto;
                padding: 0px;
                margin: 0px;
            }

            .week {
                flex-direction: column;
                align-items: flex-start;
            }

            .day {
                width: 90%;
                margin: 0px 5% 5% 5%
            }

            .month-year {
                font-size: 1.2em;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 10px;
            }

            .text-content h2, .text-content h4, .text-content p {
                text-align: center;
            }

            .sidebar {
                padding: 10px;
            }

            .image {  
                max-width: 300px;
                height: auto;
                margin: 0 auto;
            }

            .button-container {
                display: inline;
                text-align: center;
            }
            iframe #t1c, #t1 {
                font-weight:normal;
            }
            .month i {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
           .btn-a {
                padding: 6px 12px;
                font-size: 0.9em;
                display: block;
           }

           .text-onsale, .text-countdown {
            display: block;
           }

            .image {  
                max-width: 300px;
                height: auto;
                margin: 0 auto;
            }

            .see-all {
                font-size: 16px; 
            }

            .see-all>i {
                padding: 0 5px;
            }
        }

         /*--cover up mac , mac-book---*/

        @media only screen and (min-width: 1024px) and (max-width: 1920px) {}

        /*--mac book pro , and mac-book retina display screen---*/

        @media only screen and (min-width: 1920px) and (max-width: 2560px) {}