.form-control {
    font-size: 14px !important;
    padding: 10px 15px !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    color: var(--default-color) !important;
    /* background-color: color-mix(in srgb, var(--background-color), transparent 50%) !important; */
    border-color: color-mix(in srgb, var(--default-color), transparent 80%) !important;
}

.form-control:focus {
    border-color: var(--accent-color) !important;
}

.form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%) !important;
}

#formLogin button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

#formLogin button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.btn-toggle-password {
    position: absolute;
    top: 55%;
    right: 25px;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 20px;
    color: var(--default-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.btn-toggle-password:hover {
    color: var(--accent-color);
}

.login-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.login-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.login-header {
    background-color: #FDEFD4;
    padding: 25px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.login-header h2 {
    color: #746C33;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-header p {
    color: #8a8776;
    font-size: 14px;
    margin: 0;
}

.login-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #746C33;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group label i {
    margin-right: 5px;
}

.login-card .form-control {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 15px !important;
    transition: all 0.3s ease;
}

.login-card .form-control:focus {
    background-color: #fff;
    border-color: #22B14C !important;
    box-shadow: 0 0 0 3px rgba(34, 177, 76, 0.15) !important;
}

.login-card .btn-toggle-password {
    right: 15px;
    top: 70%;
}

.form-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.login-btn {
    color: #fff;
    background: #22B14C;
    border: 0;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.login-btn i {
    margin-left: 5px;
    font-size: 22px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #1b9d3f;
    transform: translateY(-2px);
}

.login-btn:hover i {
    transform: translateX(3px);
}

.forgot-password {
    color: #8a8776;
    font-size: 14px;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #22B14C;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .login-card {
        max-width: 100%;
    }

    .login-header {
        padding: 20px;
    }

    .login-body {
        padding: 20px;
    }
}

.dashboard-section {
    min-height: 100vh;
    background-color: #f5f7fa;
    padding-top: 120px;
    padding-bottom: 60px;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 32px;
    color: #746C33;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 18px;
    color: #888;
    margin-bottom: 30px;
}

.dashboard-content {
    margin-top: 20px;
}

.dashboard-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.dashboard-card-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    background-color: #FDEFD4;
}

.dashboard-card-header h2 {
    font-size: 20px;
    color: #746C33;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.dashboard-card-body {
    padding: 25px;
}

.menu-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    background-color: #fff;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.menu-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.75rem 1rem;
}

.menu-card .card-title {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.menu-card .card-title i {
    font-size: 2.5rem;
    color: #a89566;
    transition: all 0.3s ease;
}

.menu-card:hover .card-title i {
    color: #364d31;
    transform: scale(1.1);
}

.menu-card .card-text {
    color: #555;
    font-weight: 500;
    font-size: 1rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.menu-card:hover .card-text {
    color: #364d31;
}

.menu-options-card .row {
    margin: 0 -10px;
}

.menu-options-card .col {
    padding: 10px;
}

.menu-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    cursor: pointer;
}

.menu-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    height: 100%;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(168, 149, 102, 0.15);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 24px;
    color: #a89566;
    transition: all 0.3s ease;
}

.menu-card .card-text {
    color: #555;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #f9fafb;
}

.menu-card:hover .card-icon {
    background-color: #364d31;
}

.menu-card:hover .card-icon i {
    color: #fff;
}

.menu-card:hover .card-text {
    color: #364d31;
}

@media (max-width: 767px) {
    .dashboard-section {
        padding-top: 100px;
    }

    .page-title {
        font-size: 26px;
    }

    .subtitle {
        font-size: 16px;
    }

    .dashboard-card-header h2 {
        font-size: 18px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 20px;
    }

    .menu-card .card-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .menu-card .card-title i {
        font-size: 2rem;
    }

    .menu-card .card-text {
        font-size: 0.9rem;
    }
}

.scrollable-tab {
  max-height: 60vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}

.unavailable.reserved {
  position: relative;
}

.unavailable.reserved::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  background-color: green;
  border-radius: 50%;
}




.tooltip {
    --bs-tooltip-zindex: 1080;
    --bs-tooltip-max-width: 200px;
    --bs-tooltip-padding-x: 0.5rem;
    --bs-tooltip-padding-y: 0.25rem;
    --bs-tooltip-margin: ;
    --bs-tooltip-font-size: 0.7875rem;
    --bs-tooltip-color: var(--bs-body-bg);
    --bs-tooltip-bg: var(--bs-emphasis-color);
    --bs-tooltip-border-radius: 0.25rem;
    --bs-tooltip-opacity: 0.9;
    --bs-tooltip-arrow-width: 0.8rem;
    --bs-tooltip-arrow-height: 0.4rem;
    z-index: var(--bs-tooltip-zindex);
    display: block;
    margin: var(--bs-tooltip-margin);
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: var(--bs-tooltip-font-size);
    word-wrap: break-word;
    opacity: 0
}

.tooltip.show {
    opacity: var(--bs-tooltip-opacity)
}

.tooltip .tooltip-arrow {
    display: block;
    width: var(--bs-tooltip-arrow-width);
    height: var(--bs-tooltip-arrow-height)
}

.tooltip .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: rgba(0, 0, 0, 0);
    border-style: solid
}

.bs-tooltip-top .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
    bottom: calc(-1*var(--bs-tooltip-arrow-height))
}

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    top: -1px;
    border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;
    border-top-color: var(--bs-tooltip-bg)
}

.bs-tooltip-end .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
    left: calc(-1*var(--bs-tooltip-arrow-height));
    width: var(--bs-tooltip-arrow-height);
    height: var(--bs-tooltip-arrow-width)
}

.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    right: -1px;
    border-width: calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;
    border-right-color: var(--bs-tooltip-bg)
}

.bs-tooltip-bottom .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
    top: calc(-1*var(--bs-tooltip-arrow-height))
}

.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    bottom: -1px;
    border-width: 0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);
    border-bottom-color: var(--bs-tooltip-bg)
}

.bs-tooltip-start .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
    right: calc(-1*var(--bs-tooltip-arrow-height));
    width: var(--bs-tooltip-arrow-height);
    height: var(--bs-tooltip-arrow-width)
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    left: -1px;
    border-width: calc(var(--bs-tooltip-arrow-width)*.5) 0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);
    border-left-color: var(--bs-tooltip-bg)
}

.tooltip-inner {
    max-width: var(--bs-tooltip-max-width);
    padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
    color: var(--bs-tooltip-color);
    text-align: center;
    background-color: var(--bs-tooltip-bg);
    border-radius: var(--bs-tooltip-border-radius)
}