/* menu.css — menu page and staff listing styles.
   Shared shell (.page-header, .grid, .news-card, .add-btn, etc.) lives in base.css. */

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: var(--card-bg);
    color: var(--text-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-weight: 600;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
}

.category-tag-overlay {
    background: rgba(212, 168, 67, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    z-index: 20;
}

.availability {
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.available {
    background: var(--color-success-bg);
    color: var(--color-success-text);
}

.unavailable {
    background: var(--color-danger-bg);
    color: var(--color-danger-text);
}

.order-status-neutral {
    background: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.order-card-cancelled {
    opacity: 0.85;
}

.report-stat-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.report-stat-link small {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.85rem;
}

.order-item-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    text-align: left;
}

.order-item-list li {
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(107, 72, 66, 0.12);
}

.order-item-list li:last-child {
    border-bottom: none;
}

.add-btn-form {
    margin-top: auto;
}

/* Toast notification */
.toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--color-success-border);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: slideIn 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@keyframes slideIn {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast.hide {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(400px); opacity: 0; }
}
