/* Basic styles for the menu */
.menu {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
}

.menu-item {
    padding: 3px;
    cursor: pointer;
    margin: 0px;
}

.menu-item:hover {
    background-color: #c1dcf7;
}

.menu-item-active {
    padding: 3px;
    cursor: pointer;
    margin: 0px;
    background-color: #deeeff;
    font-weight: bold;
}

.bedCard {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 152px;
    height: 102px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 5px;
}

.bedCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.2);
}

.p-datatable-column-header-content {
    /*default is display:flex and its not allowed colSpec style text-align:center */
    display: inline-flex !important;
}

.dialogBtnContainer {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 10px;
    align-items: center;
}

.p-datepicker-day.p-disabled {
    text-decoration-line: line-through;
    color: #888;
    /* Optional: Grey out the text */
    pointer-events: none;
    /* Ensure the dates are unclickable */
}

.p-dialog-header {
    background-color: rgb(220, 236, 251);
    border-radius: 12px;
    padding: 0px 0px 0px 10px !important;
    margin-bottom: 10px;
}

.tabActiveClass {
    height: 20px;
    background: white !important;
    color: #0ea5e9 !important;
    border-width: 0px 0px 5px 0px !important;
    font-size: small !important;
}

.tabActiveClass .p-button-label {
    font-weight: bold !important;
}

.tabPassiveClass {
    height: 20px;
    background: white !important;
    color: black !important;
    border-width: 0 0 0 0 !important;
    font-size: small !important;
}

.p-listbox-option {
    padding: 1px !important;
}