
 .modern-calendar {
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .calendar-header-wrapper {
        background: linear-gradient(135deg, #174251, #2a6f85);
        padding: 24px;
        color: white;
    }

    .calendar-navigation {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-btn {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .current-month {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 0;
    }

    .calendar-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .action-btn {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .action-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .view-toggle {
        display: flex;
        background: rgba(255, 255, 255, 0.1);
        padding: 4px;
        border-radius: 20px;
        gap: 4px;
    }

    .toggle-btn {
        background: none;
        border: none;
        color: white;
        padding: 8px 16px;
        border-radius: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .toggle-btn.active {
        background: white;
        color: #174251;
    }

    .calendar-body {
        padding: 24px;
    }

    .weekday-header {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        margin-bottom: 16px;
    }

    .weekday {
        text-align: center;
        font-weight: 600;
        color: #6c757d;
        padding: 8px;
        font-size: 0.9rem;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
    }

    .calendar-day {
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 12px;
        min-height: 120px;
        transition: all 0.3s ease;
    }

    .search-loading {
        position: absolute;
        background: white;
        padding: 8px 15px;
        border-radius: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin-top: 5px;
        font-size: 0.8rem;
        color: #174251;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Highlight matching days */
    .calendar-day[style*="border: 2px solid #174251"] {
        box-shadow: 0 0 0 2px rgba(blue, 0.2);
    }

    /* Faded non-matching days */
    .calendar-day[style*="opacity: 0.3"] {
        background-color: #f9f9f9;
    }

    .calendar-day[style*="opacity: 0.3"] .day-number {
        color: #ccc;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .calendar-search-container {
            flex-direction: column;
        }

        #calendarSearch {
            width: 120%;
        }

        .search-btn {
            align-self: flex-end;
        }
    }

    .calendar-day:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .calendar-day.inactive {
        background: #f8f9fa;
    }

    .calendar-day.today {
        background: rgba(blue, 0.1);
        border-color: #174251;
    }

    .day-number {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        display: block;
    }

    .inactive .day-number {
        color: #6c757d;
    }

    .event-list {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .event-pill {
        padding: 4px 8px;
        border-radius: 6px;
        font-size: 0.8rem;
        color: white;
        cursor: pointer;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: all 0.3s ease;
    }

    .event-pill:hover {
        transform: translateX(4px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .event-pill.regular-session {
        background: #174251;
    }

    .event-pill.public-hearing {
        /* background: #00a67e; */
        background: #174251;
    }

    .event-pill.special-session {
        /* background: #dc3545; */
        background: #174251;
    }

    .event-pill.committee {
        /* background: #fd7e14; */
        background: #174251;
    }

    .event-time {
        font-weight: 600;
        margin-right: 4px;
    }

    .more-events {
        font-size: 0.8rem;
        color: #6c757d;
        text-align: center;
        padding: 2px;
        cursor: pointer;
    }

    /* Event Modal */
    .event-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        background: white;
        border-radius: 16px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
    }

    .modal-header {
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .modal-title {
        margin: 0;
        font-size: 1.2rem;
    }

    .close-modal {
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        color: #6c757d;
    }

    .modal-body {
        padding: 20px;
    }

    @media (max-width: 768px) {
        .calendar-header-wrapper {
            padding: 16px;
        }

        .calendar-actions {
            flex-direction: column;
            gap: 12px;
            align-items: stretch;
        }

        .calendar-grid {
            gap: 4px;
        }

        .calendar-day {
            padding: 8px;
            min-height: 100px;
        }

        .event-pill {
            padding: 2px 6px;
            font-size: 0.75rem;
        }
    }

    /* Upcoming Events Section Styles */
    .upcoming-events-section {
        margin-bottom: 40px;
    }

    .upcoming-header {
        padding: 24px;
        border-bottom: 1px solid #e0e0e0;
        background: linear-gradient(135deg, #174251, #2a6f85);
        color: white;
        border-radius: 16px 16px 0 0;
    }

    .upcoming-header h3 {
        margin: 0;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .upcoming-header p {
        margin: 8px 0 0;
        opacity: 0.8;
    }

    .upcoming-body {
        padding: 0;
        background: white;
        border-radius: 0 0 16px 16px;
    }

    .upcoming-event-item {
        display: flex;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }

    .upcoming-event-item:hover {
        background: rgba(blue, 0.1);
    }

    .upcoming-event-item:last-child {
        border-bottom: none;
    }

    .event-date-badge {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 80px;
        padding: 10px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-right: 20px;
    }

    .event-date-badge .month {
        font-size: 0.8rem;
        color: #6c757d;
        text-transform: uppercase;
    }

    .event-date-badge .date {
        font-size: 1.8rem;
        font-weight: 700;
        color: #174251;
        line-height: 1;
        margin: 4px 0;
    }

    .event-date-badge .day {
        font-size: 0.8rem;
        color: #6c757d;
        text-transform: uppercase;
    }

    .event-content {
        flex: 1;
    }

    .event-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 8px;
    }

    .event-type {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .event-type.regular-session {
        color: #174251;
    }

    .event-type.public-hearing {
        color: #00a67e;
    }

    .event-type.special-session {
        color: #dc3545;
    }

    .event-type.committee {
        color: #fd7e14;
    }

    .event-type i {
        font-size: 0.6rem;
    }

    .event-type.regular-session i {
        color: #174251;
    }

    .event-type.public-hearing i {
        color: #00a67e;
    }

    .event-type.special-session i {
        color: #dc3545;
    }

    .event-type.committee i {
        color: #fd7e14;
    }

    .event-time {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgb(177, 177, 177);
        font-size: 0.9rem;
    }

    .event-title-calendar {
        margin: 0;
        font-size: 1.1rem;
        color: rgb(224, 224, 224);
    }

    .event-title {
        margin: 0;
        font-size: 1.1rem;
        color: black;
    }

    .no-events {
        padding: 40px 20px;
        text-align: center;
    }

    .no-events-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        color: #6c757d;
    }

    .no-events-content i {
        font-size: 3rem;
        color: #e0e0e0;
    }

    .no-events-content p {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .no-events-content span {
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .upcoming-event-item {
            flex-direction: column;
        }

        .event-date-badge {
            margin-right: 0;
            margin-bottom: 16px;
            flex-direction: row;
            gap: 8px;
            justify-content: flex-start;
            padding: 8px 16px;
        }

        .event-date-badge .month,
        .event-date-badge .day {
            font-size: 0.9rem;
        }

        .event-date-badge .date {
            margin: 0 8px;
        }

        .event-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }
    }

    .calendar-day.weekend {
        background-color: rgba(220, 53, 69, 0.1);
        /* Light red background */
    }

    .calendar-day.weekend:hover {
        background-color: rgba(220, 53, 69, 0.15);
        /* Slightly darker red on hover */
    }

    .calendar-day.weekend.today {
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(blue, 0.1));
        border-color: #dc3545;
    }

    .calendar-day.weekend .day-number {
        color: #dc3545;
        /* Red text for the day number */
    }

    .calendar-day.weekend.inactive {
        background-color: rgba(220, 53, 69, 0.05);
        /* Lighter red for inactive weekend days */
    }

    .calendar-day.weekend.inactive .day-number {
        color: rgba(220, 53, 69, 0.6);
        /* Lighter red text for inactive weekend days */
    }

    /* Add holiday styles */
    .calendar-day.holiday {
        background-color: rgba(220, 53, 69, 0.05);
        border-color: rgba(220, 53, 69, 0.2);
    }

    .calendar-day.holiday .day-number {
        color: #dc3545;
    }

    .holiday-name {
        font-size: 0.7rem;
        color: #dc3545;
        font-weight: 500;
        margin-bottom: 4px;
        text-align: center;
    }

    .calendar-day.holiday.today {
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(blue, 0.1));
    }

    .calendar-day.holiday.weekend {
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    }

    /* Add these new styles to your existing CSS */

    /* Month/Year Selector */
    .month-year-selector {
        display: flex;
        gap: 8px;
    }

    .month-selector,
    .year-selector {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        cursor: pointer;
        font-weight: 600;
    }

    .month-selector option,
    .year-selector option {
        color: #333;
    }

    /* Search Container */
    .search-container {
        display: flex;
        margin-top: 16px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        overflow: hidden;
    }

    #eventSearch {
        flex: 1;
        background: transparent;
        border: none;
        color: white;
        padding: 8px 16px;
        outline: none;
    }

    #eventSearch::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .search-btn {
        background: #286a7f75;
        border: none;
        color: white;
        padding: 8px 16px;
        cursor: pointer;
        width: 50px;
        border-radius: 35%;
        margin: 4px;
    }

    /* Responsive Calendar Grid */
    @media (max-width: 768px) {
        .calendar-grid {
            gap: 2px;
        }

        .calendar-day {
            min-height: 80px;
            padding: 4px;
        }

        .day-number {
            font-size: 0.8rem;
        }

        .event-pill {
            padding: 2px 4px;
            font-size: 0.7rem;
        }

        .holiday-name {
            font-size: 0.6rem;
        }
    }

    @media (max-width: 576px) {
        .calendar-day {
            min-height: 60px;
        }

        .event-list {
            display: none;
        }

        .calendar-day.has-events::after {
            content: '•';
            color: #174251;
            position: absolute;
            top: 2px;
            right: 2px;
            font-size: 1.2rem;
        }

        .month-year-selector {
            flex-direction: column;
            gap: 4px;
        }

        .month-selector,
        .year-selector {
            padding: 4px 8px;
            font-size: 0.9rem;
        }
    }

    /* Modal Event Details */
    .event-details {
        padding: 12px;
        margin-bottom: 12px;
        border-radius: 8px;
        background: #f8f9fa;
    }

    .event-details.regular-session {
        border-left: 4px solid #174251;
    }

    .event-details.public-hearing {
        border-left: 4px solid #00a67e;
    }

    .event-details.special-session {
        border-left: 4px solid #dc3545;
    }

    .event-details.committee {
        border-left: 4px solid #fd7e14;
    }

    .event-time-modal {
        font-size: 0.9rem;
        color: #6c757d;
        margin-bottom: 4px;
    }

    .calendar-search-container {
        display: flex;
        margin-bottom: 15px;
        gap: 8px;
    }

    #calendarSearch {
        flex: 1;
        padding: 10px 15px;
        border: 1px solid #e0e0e0;
        border-radius: 20px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    #calendarSearch:focus {
        outline: none;
        border-color: #174251;
        box-shadow: 0 0 0 2px rgba(blue, 0.1);
    }

    /* Faded day style for search results */
    .calendar-day[style*="opacity: 0.3"] .day-number {
        color: #aaa;
    }

    /* Highlight matching events */
    .event-pill.highlight {
        animation: pulse 1.5s infinite;
        box-shadow: 0 0 0 2px rgba(blue, 0.5);
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        #calendarSearch {
            padding: 8px 12px;
            font-size: 0.8rem;
        }
    }

    .pagination-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        border-top: 1px solid #e2e8f0;
        background-color: #f8fafc;
    }

    .pagination-info {
        font-size: 0.9rem;
        color: #64748b;
    }

    .pagination-links {
        display: flex;
        gap: 0.5rem;
    }

    .page-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 8px;
        background-color: white;
        color: #334155;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
        border: 1px solid #e2e8f0;
    }

    .page-link:hover {
        background-color: #f1f5f9;
        color: #1e40af;
    }

    .page-link.active {
        background-color: #2e6170;
        color: white;
        border-color: #2e6170;
    }

    .page-link i {
        font-size: 0.9rem;
    }

    .page-dots {
        display: flex;
        align-items: center;
        padding: 0 0.5rem;
        color: #64748b;
    }

    @media (max-width: 768px) {
        .pagination-controls {
            flex-direction: column;
            gap: 1rem;
        }

        .pagination-links {
            flex-wrap: wrap;
            justify-content: center;
        }
    }

    @media screen and (max-width: 1080px) and (min-height: 1920px) {
        .modern-btn {
            padding: 0.3rem 1rem !important;
        }

        .current-full-date {
            font-size: .6rem !important;
        }

        .modern-select {
            padding: .7rem .2rem !important;
        }

        .calendar-day {
            min-height: 120px !important;
            font: .6rem !important;
            padding: 0.5rem !important;
        }

        .calendar-day.has-events {
            min-height: 120px !important;
        }

        .event-pill.regular-session {
            padding: 0.1rem 0.3rem !important;
            font-size: 0.7rem !important;
        }

        .weekday {
            text-align: center;
            font-weight: 600;
            color: #6c757d;
            padding: 8px;
            font-size: 0.9rem;
        }

        .weekday:first-child {
            /* Sunday */
            text-align: left;
        }

        .weekday:last-child {
            /* Saturday */
            text-align: right;
        }

    }

    .calendar-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .modern-btn {
        background: #2e6170;
        color: white;
        border: none;
        padding: 0.8rem 1.5rem;
        border-radius: 12px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 4px 15px #2e617033; }

    .modern-btn:hover {
        box-shadow: 0 6px 20px #2e61704d; }

    .btn-content {
        align-items: center;
        gap: 0.8rem;
    }


    .current-full-date {
        font-weight: 500;
        color: rgb(253, 253, 253);
        font-size: 1rem;
        margin-left: .5rem;
    }

    .modern-search {
        width: 100%;
        min-width: 600px;
    }

    .search-wrapper {
        position: relative;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
        transition: all 0.3s ease;
    }

    #calendarSearch {
        width: 100%;
        padding: .8rem 2.5rem;
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        background: transparent;
    }

    #calendarSearch:focus {
        outline: none;
    }

    .search-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
    }

    .modern-search-btn {
        position: absolute;
        right: 0.5rem;
        top: 0;
        background: #2e6170;
        color: white;
        border: none;
        border-radius: 8px;
        width: 35px;
        height: 35px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .modern-search-btn:hover {
        background: #204d5c;
        transform: translateY(-10%) scale(1.05);
    }

    .modern-selectors {
        display: flex;
        gap: 0.5rem;
    }

    .modern-select {
        padding: 0.5rem;
        border: none;
        border-radius: 12px;
        background: white;
        font-size: 1rem;
        color: #2c3e50;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        transition: all 0.3s ease;
    }

    .modern-select:focus {
        outline: none;
        box-shadow: 0 4px 20px #2e617026;
    }

    @media (max-width: 1024px) {
        .calendar-actions {
            flex-direction: column;
            gap: 1.5rem;
            padding: 1.2rem;
        }

        .actions-left,
        .actions-center,
        .actions-right {
            width: 100%;
        }

        .modern-search {
            max-width: 100%;
        }

        .modern-selectors {
            width: 100%;
            justify-content: space-between;
        }

        .modern-select {
            flex: 1;
        }
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes slideDown {
        from {
            transform: translateY(-20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes slideRight {
        from {
            transform: translateX(-20px);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes slideUp {
        from {
            transform: translateY(20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes popIn {
        0% {
            transform: scale(0.8);
            opacity: 0;
        }

        70% {
            transform: scale(1.1);
            opacity: 0.7;
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    .animate-fade-in {
        animation: fadeIn 1s ease-out;
    }

    .animate-slide-down {
        animation: slideDown 1s ease-out;
    }

    .animate-slide-right {
        animation: slideRight 1s ease-out;
    }

    .animate-slide-up {
        animation: slideUp 1s ease-out;
    }

    .animate-pop-in {
        animation: popIn 0.8s cubic-bezier(0.26, 1.32, 0.46, 0.97);
    }

    .calendar-disclaimer {
        margin: 25px auto;
        background: linear-gradient(145deg, #ffffff, #f8f9fa);
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        max-width: 1600px;
        /* For 1080p screens */
    }

    .disclaimer-wrapper {
        padding: 35px;
        /* Increased padding for larger screens */
    }

    .disclaimer-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .disclaimer-header i {
        font-size: 32px;
        /* Larger icon */
        color: #2e6170;
    }

    .disclaimer-header h4 {
        margin: 0;
        color: #2e6170;
        font-weight: 600;
        font-size: 24px;
        /* Larger text */
    }

    .notice-text {
        background: rgba(46, 97, 112, 0.05);
        padding: 25px;
        border-radius: 12px;
        margin-bottom: 30px;
        font-size: 1.1rem;
        /* Larger text */
        line-height: 1.8;
        color: #495057;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .notice-text i {
        color: #2e6170;
        margin-top: 5px;
        font-size: 1.3rem;
    }

    .contact-section {
        background: #ffffff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .contact-section h5 {
        color: #2e6170;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 20px;
        /* Larger text */
    }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        /* Larger columns */
        gap: 25px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px;
        background: rgba(46, 97, 112, 0.03);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .contact-item i {
        color: #2e6170;
        font-size: 1.5rem;
        /* Larger icons */
    }

    .contact-item div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .contact-item strong {
        font-size: 1rem;
        color: #6c757d;
    }

    .contact-item span {
        font-size: 1.1rem;
        color: #2e6170;
    }

    /* 1920x1080 screen specific styles */
    @media screen and (min-width: 1920px) {
        .calendar-disclaimer {
            max-width: 1800px;
            margin: 40px auto;
        }

        .disclaimer-wrapper {
            padding: 45px;
        }

        .contact-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .notice-text {
            font-size: 1.2rem;
            padding: 30px;
        }

        .contact-item {
            padding: 25px;
        }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }

        .notice-text {
            flex-direction: column;
            gap: 10px;
        }

        .disclaimer-wrapper {
            padding: 20px;
        }
    }

   
.simple-keyboard {
    display: none;
    width: 100%;
    height: 11vh;
    background: #f8f9fa;
    color: gray;
    margin-top: 15px;
}

.simple-keyboard .hg-row {
    display: flex;
    justify-content: space-between;
}

.simple-keyboard .hg-button {
    flex: 1;
    margin: 3px;
    padding: 6px;
    font-size: 1em;
    text-align: center;
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    cursor: pointer;
    border-radius: 4px;
}


.prev-month
{
    margin-right: 10%;
}
