.bee-restaurant-module {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    font-family: inherit;
}

.bee-module-header {
    margin-bottom: 22px;
    border-bottom: 1px solid #d8f6fc;
    padding-bottom: 16px;
}

.bee-module-header h2 {
    margin: 0 0 8px;
    color: #173c43;
    font-size: 28px;
}

.bee-module-header p {
    margin: 0;
    color: #63767c;
}

.bee-alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.bee-alert-error {
    background: #fff1f1;
    color: #9a1f1f;
    border: 1px solid #ffd2d2;
}

.bee-alert-success {
    background: #ecfff0;
    color: #1b6e23;
    border: 1px solid #c8f0cf;
}

.bee-alert-info {
    background: #effbfe;
    color: #1f5b67;
    border: 1px solid #c8edf5;
}

.bee-food-section {
    margin: 22px 0;
}

.bee-food-section h3 {
    margin: 0 0 12px;
    padding: 10px 14px;
    background: #A2EBFE;
    color: #173c43;
    border-left: 5px solid #259f1a;
    border-radius: 10px;
}

.bee-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.bee-menu-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border: 1px solid #d9edf1;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fbfeff;
}

.bee-menu-card:hover {
    border-color: #7ecce0;
    box-shadow: 0 8px 18px rgba(126, 204, 224, 0.18);
}

.bee-menu-card input {
    width: 18px;
    height: 18px;
    accent-color: #259f1a;
}

.bee-form-actions {
    margin-top: 24px;
    text-align: right;
}

.bee-form-actions button{
    background: #0028c5;
  border: none;
}
.bee-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    background: #259f1a;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bee-btn:hover {
    transform: translateY(-1px);
    filter: brightness(0.95);
}

.bee-btn-small {
    padding: 8px 14px;
    font-size: 13px;
    margin-left: 10px;
}

.bee-table-wrap {
    overflow-x: auto;
}

.bee-history-table {
    width: 100%;
    border-collapse: collapse;
}

.bee-history-table th,
.bee-history-table td {
    padding: 12px;
    border-bottom: 1px solid #e5eff2;
    text-align: left;
}

.bee-history-table th {
    background: #7ecce0;
    color: #143942;
}

.bee-pagination ul {
    list-style: none;
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 20px 0 0;
}

.bee-pagination a,
.bee-pagination span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    background: #effbfe;
    color: #173c43;
    text-decoration: none;
}

.bee-pagination .current {
    background: #259f1a;
    color: #fff;
}

@media (max-width: 900px) {
    .bee-menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .bee-restaurant-module {
        padding: 18px;
    }

    .bee-menu-grid {
        grid-template-columns: 1fr;
    }

    .bee-form-actions {
        text-align: left;
    }
}
