﻿html {
    font-size: 16px;
}

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

html, body {
    direction: rtl !important;
    text-align: right;
    overflow-x: hidden;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.navbar {
    height: 80px; /* Adjust the height as needed */
    display: flex;
    align-items: center; /* Ensures vertical alignment */
    justify-content: space-between; /* Adjusts spacing between items */
    padding: 10px 20px; /* Adds spacing inside navbar */
}

    .navbar img {
        max-height: 50px; /* Ensures images fit inside navbar */
        width: auto; /* Maintain aspect ratio */
    }

.navbar-center {
    flex-grow: 1; /* Pushes the center logo to the middle */
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    flex-direction: row !important; /* מכריח את הכיוון להיות אופקי */
    align-items: center;
    justify-content: start; /* מתחיל את הפריטים מהשמאל (או ימין אם RTL) */
    gap: 15px; /* ריווח בין פריטים */
}

.nav-item {
    position: relative;
    margin-right: 15px; /* ריווח בין פריטים */
}

.nav-link {
    text-decoration: none;
    color: #007bff;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
}

    .nav-link:hover {
        background-color: #f0f0f0;
        border-radius: 5px;
    }

.navbar .main-logo {
    max-height: 70px; /* קובע גודל שונה ללוגו הראשי */
    width: auto;
}

.navbar .client-logo {
    max-height: 80px; /* קובע גודל שונה ללוגו המשני */
    width: auto;
}

@media (max-width: 767.98px) {
    .client-logo {
        width: 80px;
        height: auto;
    }
}

.user-fullname {
    font-weight: bold;
    font-size: 27px;
    color: #333; /* Adjust color */
    margin: auto;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    margin: auto;
}


.nav-button {
    background-color: white;
    color: black;
    padding: 5px 7px;
    border-radius: 5px;
    border-color: white;
    cursor: pointer;
    font-size: 23px;
    transition: background-color 0.2s ease-in-out;
}

    .nav-button.active {
        background-color: #ffd700;
        letter-spacing: 1px;
    }

    .nav-button:hover {
        background-color: lightgray;
        font-size: 25px;
        font-weight: bold;
    }

.client-logo {
    max-height: 100px;
    height: auto;
}

@media (max-width: 767.98px) {
    .client-logo {
        max-height: 50px;
    }
}

.input-text {
    border: none;
    background: transparent;
    border-bottom: 1px solid #000;
    outline: none;
    height: 60px;
    width: 90%;
    font-size: 20px;
    color: black;
    font-weight: bold;
    font-weight: bold;
}

.required-star {
    color: red;
    font-size: 16px;
    margin-left: 5px;
    font-weight: bold;
}

h2 {
    font-size: 25px;
    color: darkblue;
}

strong {
    font-size: 22px;
    color: darkblue;

}
strongdata {
    font-size: 22px;
    color: darkgreen;
}
strongdatagreen {
    font-size: 22px;
    color: darkgreen;
    font-weight: bold;
}
strongdatared {
    font-size: 22px;
    color: red;
    font-weight: bold;
}


.card-header {
    border-bottom: 1px solid #eee;
    background-color: #fafafa;
}

canvas {
    max-height: 250px;
}


.card-header h2 {
    font-size: 22px;
    color: darkblue;
    font-weight: bold;
}

@media (max-width: 576px) {

    h2 {
        font-size: 20px;
        color: darkblue;
        font-weight: bold;
    }
}

h5 {
    font-size: 22px;
    color: black;
    font-weight: bold;
    text-align: center;
}

    h5 .colorBlue {
        color: darkblue;
        font-size: 32px;
    }

h6 {
    font-size: 25px;
    color: darkblue;
    font-weight: bold;
    text-align: center;
}

.h6 {
    color: darkblue;
    font-weight: bold;
    text-align: center;
}

.h3 {
    color: darkblue;
    font-weight: bold;
    text-align: center;
}

h6 .colorBlue {
    color: darkblue;
    font-size: 26px;
}

.h7 {
    font-size: 16px;
    color: darkblue;
    font-weight: bold;
}

.action-icons a {
    display: inline-block;
    margin: 0 6px;
    font-size: 20px;
    text-decoration: none;
}

    .action-icons a:hover {
        opacity: 0.8;
    }

@media (max-width: 768px) {
 
    .action-icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

        .action-icons a {
            font-size: 24px;
        }

    .label-text {
        display: none;
    }
}

/* גריד של עמודות רספונסיביות */
.permission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 100%;
    list-style: none;
    margin: 0;
}

/* כל קבוצה */
.permission-group {
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
}

    /* כותרת קבוצה */
    .permission-group > label {
        font-weight: bold;
        font-size: 22px;
        margin-bottom: 10px;
        display: block;
    }

    /* כל פריט פנימי */
    .permission-group ul {
        padding-right: 20px;
        margin-top: 10px;
    }

        .permission-group ul li {
            list-style: none;
            margin-bottom: 5px;
        }

    .permission-group input[type="checkbox"] {
        margin-left: 10px;
        transform: scale(1.4);
    }

    .permission-group label {
        font-size: 22px;
        display: flex;
        align-items: center;
    }

    .permission-group span.toggle {
        margin-right: auto;
        cursor: pointer;
        font-size: 20px;
    }

.modal {
    z-index: 20000 !important;
}

.modal-backdrop {
    z-index: 19990 !important;
}

.modal-header .close {
    margin-top: -4px;
}

.close {
    font-size: 32px;
    color: black;
    font-weight: bold;
}

.modal-footer {
    padding: 10px 20px;
    margin-top: 0;
}

.modal-header {
    padding: 10px 15px;
}


/* כותרת טבלה קפואה */
.sticky-header thead th {
    position: sticky;
    top: 56px; /* התאם אם יש navbar דביק אחר */
    z-index: 2;
    background: #f8f9fa;
}

/* שמירת מספרים/תאריכים בשורה אחת */
.text-nowrap {
    white-space: nowrap;
}


.month-ddl {
    min-width: 10.5rem;
   
}

.year-ddl {
    min-width: 6.5rem;
    
}
/* במסכים צרים אפשר קצת להקטין */
@media (max-width: 576px) {
    .month-ddl {
        min-width: 9rem;
    }

    .year-ddl {
        min-width: 6rem;
    }
}



.carddetails {
    width: 60%;
    margin: auto;
}

@media (max-width: 576px) {
    /* רק לעמוד זה — הרחבה מלאה */
    .carddetails {
        width: 100% !important;
        max-width: 100% !important;
    }

        /* טבלאות מתוחות */
        .carddetails table {
            width: 100% !important;
            table-layout: fixed;
        }

            /* עמודות לא ישברו גבוה מדי */
            .carddetails table td,
            .carddetails table th {
                white-space: normal;
                word-break: break-word;
            }
}

.form-label {
    font-size: 20px;
    color: darkgreen;
    font-weight: bold;
}

.form-check-label {
    font-size: 20px;
    color: darkgreen;
    font-weight: bold;
}

.form-control, .form-select, .form-check-input, .select2-selection__rendered .select2-container--default .select2-selection--single {
    font-size: 21px;
    color: darkblue;
    font-weight: bold;
    line-height: 40px;
}
/* קובע line-height וגובה ל-select2 */
.select2-container .select2-selection--single {
    height: 45px !important; /* גובה כללי */
    line-height: 45px !important; /* מרכז את הטקסט אנכית */
    font-size: 21px !important;
    color: darkblue !important;
    font-weight: bold !important;
    border: 1px solid #ced4da;
    border-radius: 6px;
}

/* כדי שגם הטקסט שבתוך הסלקט ייראה כמו בשאר השדות */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px !important;
    color: darkblue !important;
    font-weight: bold !important;
}

/* חץ הבחירה */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px !important;
}


.page-title {
    white-space: nowrap
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.25rem
    }

    #projectSearch {
        width: 100%
    }


    .form-label {
        font-size: 18px;
        color: darkgreen;
        font-weight: bold;
    }

    .form-check-label {
        font-size: 18px;
        color: darkgreen;
        font-weight: bold;
    }


    .form-control {
        font-size: 18px;
        color: darkblue;
        font-weight: normal;
    }

    .form-select {
        font-size: 18px;
        color: darkblue;
        font-weight: normal;
    }

    .form-check-input {
        font-size: 18px;
        color: darkblue;
        font-weight: normal;
    }
}


/* ===== Documents mobile polish ===== */
@media (max-width: 767.98px) {
    /* פילטרים */
    .filters .form-select,
    .filters .form-control {
        width: 100% !important;
    }

    .filters .col-6, .filters .col-12 {
        padding-left: .25rem;
        padding-right: .25rem;
    }

    /* כפתורים – ערימה אנכית */
    .actions-inline {
        display: grid !important;
        grid-template-columns: 1fr;
    }

        .actions-inline .btn {
            width: 100%;
        }

   

    /* להחליש sticky header במובייל */
    .sticky-header {
        position: static !important;
    }
   
}

/* Incomes – small polish for mobile */
@media (max-width: 576px) {
    .table .btn {
        font-size: .750rem;
        padding: .35rem .6rem
    }

    .card .h3 {
        font-size: 1.4rem
    }
    
}

.contact-pop-card {
    width: 420px;
    border-radius: 10px;
    --bs-popover-zindex: 5000;
    z-index: 5080;
}

/* פופ־אובר של כרטיס איש קשר – מעל מודל/באקרופ */
.contact-popover {
    --bs-popover-zindex: 5000; /* זה מה שבוטסטראפ קורא בפועל */
    z-index: 5000; /* fallback ליתר ביטחון */
}

.contact-popover {
    --bs-popover-bg: transparent;
    --bs-popover-border-color: transparent;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

    .contact-popover .popover-body {
        padding: 0 !important;
    }

    .contact-popover .popover-arrow,
    .contact-popover .popover-arrow::before,
    .contact-popover .popover-arrow::after {
        display: none !important;
    }

/* מעל מודלים רגילים */
.quickcard {
    width: 440px;
    border-radius: 14px;
}


/* לכרטיסי ה-QuickCard שלנו */
.quickcard-popover {
    /* מבטלים מסגרת/רקע/צל של ה-popover */
    --bs-popover-bg: transparent;
    --bs-popover-border-color: transparent;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

    .quickcard-popover .popover-body {
        padding: 0 !important;
    }

    .quickcard-popover .popover-arrow,
    .quickcard-popover .popover-arrow::before,
    .quickcard-popover .popover-arrow::after {
        display: none !important;
    }

/* אופציונלי: מניעת טבעת פוקוס מכוערת על הלינק הטריגר (שיקולי נגישות!) */
[data-preview-kind]:focus {
    outline: none !important;
    box-shadow: none !important;
}
.table td.text-success {
    font-weight: 500;
}

.table td.text-primary {
    font-weight: 500;
}
.chat-wrapper {
    max-width: 900px;
    margin: auto;
}

.chat-window {
    height: 450px;
    padding: 20px;
    background: #f3f5f7;
    border-radius: 12px;
    overflow-y: auto;
}

.chat-message-row {
    display: flex;
    margin-bottom: 10px;
}

.chat-bubble {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 12px;
    line-height: 1.4;
    font-size: 0.95rem;
}

    .chat-bubble.incoming {
        background: #fff;
        border: 1px solid #ddd;
    }

    .chat-bubble.outgoing {
        background: #d7fdd3;
        text-align: left;
    }

#whatsappContainer input[type=text] {
    height: 45px;
    border-radius: 10px;
}


.chat-time {
    font-size: 0.75rem;
    opacity: .6;
    margin-top: 4px;
    text-align: left;
}

#sendMessageForm {
    margin-top: 10px;
}

/* סימון וי */
.chat-tick {
    font-size: 0.8rem;
    margin-left: 4px;
}

    .chat-tick.sent {
        color: gray;
    }

    .chat-tick.delivered {
        color: #4caf50;
    }

    .chat-tick.read {
        color: #2196f3;
    }



#msgText {
    flex: 1;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 8px 12px;
}

    #msgText:focus {
        border-color: #4caf50;
        outline: none;
        box-shadow: 0 0 0 2px rgba(76,175,80,0.2);
    }

select.form-select-sm.w-auto {
    padding-inline-start: 1.8rem !important; /* ריווח מימין */
    padding-inline-end: 1.8rem !important; /* מקום לחץ */
    text-align-last: center; /* טקסט ממורכז */
    direction: rtl !important; /* תצוגת RTL */
    min-width: 90px; /* רוחב מינימלי */
    font-weight: 600;
}
.select2-results__option {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

input[type="date"], input[type="time"], input[type="datetime-local"] {
    direction: rtl !important;
    text-align: left;
    font-weight: 600;
    color: #001970;
}

    input[type="date"]::-webkit-calendar-picker-indicator {
        right: 6px;
        cursor: pointer;
    }

.summary-card-4 {
    flex: 0 0 calc(24.5% - 10px); /* 4 בכרך שורה אחת */
    background-color: white;
    border-radius: 12px;
  
    padding: 15px;
    min-width: 180px;
    text-align: center;

  
}

    .summary-card-4:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.summary-icon {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.summary-title {
    font-size: 27px;
    font-weight: bold;
    color: black;
}

.summary-value {
    font-size: 40px;
    font-weight: bold;
    color: black;
}

.equal-height-card .summary-card-4 {
    height: 100%;
}

.summary-box {
    padding: 8px 14px 14px 14px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #f8f9fa;
    min-width: 130px;
}

#enrollForm .btn {
    min-width: 130px; /* אפשר להגדיל ל־140 לפי הצורך */
    white-space: nowrap; /* לא לשבור שורה */
}

    #enrollForm .btn i {
        margin-left: 4px; /* רווח קטן בין האייקון לטקסט */
    }

#isRecurring {
    transform: scale(1.3);
    margin-left: 6px;
    accent-color: #198754; /* ירוק Bootstrap */
}

label[for="isRecurring"] {
    font-weight: 600;
    color: #198754;
    margin-right: 4px;
}

input[type=checkbox] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

table {
    font-family: "Varela Round", sans-serif;
    font-size: 19px;
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: center;
    padding: 12px;
    vertical-align: middle;
    border-left: 2px solid #ddd;
    font-size: 18px;
}
.customer-photo img {
    width: 450px;
    height: 450px;
    border-radius: 12px;
    object-fit: cover;
}

/* ============================================================
   📱 TABLE – MOBILE OPTIMIZED VIEW (Care Reports / Subtabs)
   ============================================================ */
@media (max-width: 576px) {

    /* מסתיר כותרת טבלה */
    .tab-inner-box table thead {
        display: none !important;
    }

    /* כל שורה הופכת לכרטיס */
    .tab-inner-box table tbody tr {
        display: block;
        background: #ffffff;
        border: 1px solid #e6e6e6;
        border-radius: 10px;
        padding: 10px 12px;
        margin-bottom: 12px;
    }

        /* כל תא הופך לשורה גמישה */
        .tab-inner-box table tbody tr td {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: right !important;
            padding: 6px 0 !important;
            border: none !important;
            width: 100%;
            white-space: normal !important;
            word-break: break-word !important;
        }

    /* תווית לפני הערך */
    .tab-inner-box table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #444;
        margin-left: 10px;
        flex-shrink: 0;
    }

    /* תאריך קצר */
    .tab-inner-box td[data-label="תאריך"] {
        direction: rtl !important;
    }
}

/* ============================================================
   ➕➖ TYPE (Income/Expense)
   ============================================================ */
@media (max-width: 576px) {

    .type-income::after {
        content: "+";
        color: #0d8a1f;
        font-weight: bold;
        font-size: 22px;
    }

    .type-expense::after {
        content: "–";
        color: #d60000;
        font-weight: bold;
        font-size: 22px;
    }

    /* מסתיר את הטקסט המלא בנייד */
    .mobile-hide-text {
        display: none !important;
    }
}

/* ============================================================
   ♻ CLEAN CARDS INSIDE CUSTOMER TABS – MOBILE ONLY
   ============================================================ */
@media (max-width: 767.98px) {

    .tab-inner-box .card {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin-bottom: 15px;
    }

    .tab-inner-box .card-body {
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }
}

/* ============================================================
   🧩 TEXT WRAPPING FIX FOR CATEGORY + DESCRIPTION
   ============================================================ */
.tab-inner-box table td {
    white-space: normal !important;
    word-break: break-word !important;
}

/* --- טבלה רספונסיבית לדוחות (נייד) --- */
@media (max-width: 576px) {

    .table thead {
        display: none !important;
    }

    .table tbody tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 8px 10px;
        background: #fff;
        width: 100% !important;
    }

        .table tbody tr td {
            display: flex;
            justify-content: space-between;
            text-align: right;
            padding: 6px 0 !important;
            border-bottom: 1px solid #f1f1f1;
        }

            .table tbody tr td:last-child {
                border-bottom: none;
            }

    /* טקסט לפני הערך */
    .table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #666;
        margin-left: 8px;
    }
}

/* ============================================================
   📱 MOBILE COMPACT TABLE STYLE — AmerCare Tabs
   ============================================================ */
@media (max-width: 576px) {

    /* מסתיר כותרות */
    .care-mobile-table thead {
        display: none !important;
    }

    .care-mobile-table tbody tr {
        display: block;
        margin-bottom: 12px;
        padding: 10px 12px;
        border: 1px solid #e6e6e6;
        border-radius: 10px;
        background: #fff;
    }

        /* כל תא נהיה שורה */
        .care-mobile-table tbody tr td {
            display: flex;
            justify-content: space-between;
            width: 100%;
            border: none !important;
            padding: 6px 0 !important;
            text-align: right !important;
        }

    /* תווית */
    .care-mobile-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #444;
        margin-left: 10px;
        flex-shrink: 0;
    }

    /* תאריך קצר */
    .care-mobile-table td[data-label="תאריך"],
    .care-mobile-table td[data-label="זמן"] {
        direction: rtl !important;
    }

    /* כפתורי עריכה — במסך קטן שורה שלמה */
    .care-action {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        margin-top: 6px;
    }
}
/* ============================================================
   📱 Mobile Tab Navigation — AmerCare Customer Details
   ============================================================ */
@media (max-width: 576px) {

    /* הופך את הטאבים לשורת כפתורים ברורה */
    #customerTabs {
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        gap: 5px;
        padding-bottom: 6px;
        border-bottom: 2px solid #e2e2e2;
        scrollbar-width: thin;
    }

        #customerTabs::-webkit-scrollbar {
            height: 6px;
        }

        #customerTabs .nav-item {
            flex: 0 0 auto;
        }

        #customerTabs .nav-link {
            padding: 8px 14px !important;
            border: 1px solid #ccc !important;
            border-radius: 10px !important;
            font-size: 16px;
            background: #f8f8f8;
            font-weight: 600;
        }

            #customerTabs .nav-link.active {
                background: #ffd700 !important;
                border-color: #e0b600 !important;
                color: #000 !important;
                font-weight: bold !important;
            }
}
/* ============================================================
   📱 Mobile – Customer Card
   ============================================================ */
@media (max-width: 576px) {

    .customer-card {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
        padding: 10px !important;
    }

    .customer-photo img {
        width: 120px !important;
        height: 120px !important;
        border-radius: 12px;
        object-fit: cover;
        margin-bottom: 8px;
    }

    #btnFetchPhoto {
        margin-top: 8px;
        width: 100%;
        font-size: 15px;
    }

    .customer-info {
        width: 100%;
    }

        .customer-info div {
            font-size: 16px !important;
            margin-bottom: 6px !important;
        }

        .customer-info strong {
            font-size: 16px !important;
        }

    strongdatagreen {
        font-size: 17px !important;
    }
}
/* ביטול עיצוב כרטיסים מהטבלאות של דף טיפול */
/* TR תקין */

.table-normal tr {
    display: table-row !important;
}

/* TD + TH תקינים */
.table-normal td,
.table-normal th {
    display: table-cell !important;
    border: 1px solid #dee2e6 !important;
}

    /* מניעת before רק בטבלאות הרגילות */
    .table-normal td::before,
    .table-normal th::before {
        content: "" !important;
    }


/* --- סידור עבודה --- */
/* -- דסקטופ (ברירת מחדל) -- */
#dailyGrid table {
    display: table !important;
}

#mobileCards {
    display: none !important;
}

/* צבעים */
.bg-vacation {
    background: #fff3cd !important;
}

.bg-sick {
    background: #f8d7da !important;
}

.bg-private {
    background: #d1ecf1 !important;
}

.bg-work {
    background: #c8e6c9 !important;
}
/* --- מובייל: כרטיסיות במקום טבלה --- */
@media (max-width: 768px) {

    /* במובייל – מסתירים טבלה */
    #dailyGrid table {
        display: none !important;
    }

    /* במובייל – מציגים כרטיסיות */
    #mobileCards {
        display: block !important;
        padding: 5px;
    }

    .mobile-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        border: 1px solid #e6e6e6;
    }

    .mobile-card-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .mobile-meta {
        font-size: 15px;
        margin-top: 5px;
    }

        .mobile-meta span {
            font-weight: 600;
        }

    .mobile-hour {
        margin-top: 12px;
        padding: 10px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
    }

  
}


/* דסקטופ — מציג את כל הכפתורים רגיל */
.day-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* מובייל — פריסה בגודל יפה */
@media (max-width: 768px) {
    .day-toolbar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .toolbar-btn {
        border-radius: 50px;
        padding: 10px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .toolbar-date {
        grid-column: span 4;
        font-size: 18px;
        text-align: center;
        padding: 10px;
    }

    .toolbar-wide {
        grid-column: span 2;
        font-size: 15px;
    }
}
