.wrap_header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.wrap_header_inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-sizing: border-box;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.brand span {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wrap_header_nav {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
}

.wrap_header_nav a {
    text-decoration: none;
    color: #4b5563;
    padding: 6px 8px;
    border-radius: 999px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.wrap_header_nav a:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.wrap_header_admin {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.header_name {
    color: #374151;
}

.header_btn {
    cursor: pointer;
    color: #374151;
}

.layout {
    display: flex;
    flex-direction: row;
    /* max-width: 1080px; */
    /* width: 100%; */
    width: 90%;
    margin: 0 auto;
    padding: 16px;
    box-sizing: border-box;justify-content: center;
}


@media (max-width: 768px) {
    .layout {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .wrap_header_inner {
        padding: 10px 12px;
        gap: 10px;
    }

    .brand {
        display: flex;
        flex-direction: column;
        font-size: 17px;
    }

    .brand span {
        font-size: 10px;
    }

    .wrap_header_nav {
        font-size: 14px;
        gap: 10px;
        white-space: nowrap;
        overflow-x: auto;
    }

    .wrap_header_nav a {
        padding: 4px 6px;
    }
}

@media (min-width: 1200px) {
    .wrap_header_inner {
        max-width: 1280px;
    }

    .layout {
        /* max-width: 1280px; */
        /* width: 100%; */
        width: 90%;
    }
}

/* datepicker css */
.ui-datepicker select.ui-datepicker-year {
    width: 40%;
}

.ui-datepicker select.ui-datepicker-month {
    width: 35%;
}

[data-menu] {
    cursor: pointer;
}
[data-menu] *{
    pointer-events: none;
}


.heeb__content {
    width: 100%;
    height: 100%;
    padding-bottom: 40px;
    box-sizing: border-box;
}