.overview-header {
    margin: 0px;
    display: flex;
    width: 80vw;
    justify-content: space-between;
    align-items: center;
}

.overview-header-title {
    padding: 25px 25px 10px 25px;
}

.card-custom {
    border-radius: 4px;
    padding: 25px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 0px 25px 25px 25px;
}

#permits-table td {
    border-bottom: 0.1px solid #ccc;
}

.even,
.odd {
    background-color: white !important;
    cursor: pointer !important;
    transition: ease-in-out 0.05s;
}

.even:hover,
.odd:hover {
    background-color: #eee !important;
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.w-full {
    width: 100%;
}

.gap-x-8 {
    column-gap: 0.5rem;
}

.justify-between {
    justify-content: space-between;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 100px;
}

.custom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
}

.week-time-grid {
    column-gap: 2rem;
    row-gap: 0.75rem;
}

.week-time-grid-header {
    margin-bottom: 0;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.hidden {
    display: none;
}

.modal-body {
    /* Fullscreen - (30px top margin + 54px header height +  67px footer height + 30 bottom margin) */
    max-height: calc(100vh - 181px); 
    overflow-y: auto;
}

.card-info {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 5px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

.material-symbols-outlined {
    font-size: 16px;
    color: #FB773C;
}

[data-msg]:hover::before {
    content: attr(data-msg);
    background-color: white;
    padding: 10px;
    width: 100%;
    min-width: 200px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
