/* ── Reset & base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f4f8;
    color: #333;
    min-height: 100vh;
}

/* ── Login page ──────────────────────────────────────────── */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #2c7a4b 0%, #1a4d2e 100%);
}

.login-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 380px;
}

.login-card h1 {
    text-align: center;
    color: #2c7a4b;
    margin-bottom: 0.25rem;
    font-size: 1.6rem;
}

.login-card .subtitle {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.4rem;
}

.form-group select,
.form-group input[type="password"] {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid #cdd5df;
    border-radius: 7px;
    font-size: 0.95rem;
    background: #fafafa;
    transition: border-color 0.2s;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2rem;
}

.form-group select:focus,
.form-group input[type="password"]:focus {
    outline: none;
    border-color: #2c7a4b;
    background: #fff;
}

.btn-login {
    width: 100%;
    padding: 0.75rem;
    background: #2c7a4b;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.btn-login:hover { background: #235f3a; }

.error-msg {
    background: #fee2e2;
    color: #c0392b;
    border: 1px solid #fca5a5;
    border-radius: 7px;
    padding: 0.6rem 0.85rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* ── App shell ───────────────────────────────────────────── */
.app-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-header {
    background: #1a4d2e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: 56px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.app-header .brand {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.app-header .user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.app-header .user-info span {
    opacity: 0.85;
}

.app-header .user-info .badge {
    background: #2c7a4b;
    border-radius: 12px;
    padding: 0.15rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.supervisor { background: #b45309; }

.btn-logout {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-logout:hover { background: rgba(255,255,255,0.28); }

.app-body {
    display: flex;
    flex: 1;
}

/* ── Sidebar nav ─────────────────────────────────────────── */
.sidebar {
    width: 220px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    padding: 1.25rem 0;
    flex-shrink: 0;
    box-shadow: 2px 0 6px rgba(0,0,0,0.04);
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav ul li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.25rem;
    text-decoration: none;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sidebar nav ul li a:hover {
    background: #f0faf5;
    color: #2c7a4b;
}

.sidebar nav ul li a.active {
    background: #f0faf5;
    color: #2c7a4b;
    border-left-color: #2c7a4b;
    font-weight: 600;
}

.sidebar nav ul li.nav-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.5rem 1rem;
}

.nav-icon { font-size: 1rem; }

/* ── Content area ────────────────────────────────────────── */
.content-area {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.content-area.full-width {
    padding: 0;
}

.content-area h2 {
    color: #1a4d2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.content-area p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* ── Welcome card ────────────────────────────────────────── */
.welcome-card {
    background: linear-gradient(135deg, #f0faf5, #e8f5ee);
    border: 1px solid #c6e6d3;
    border-radius: 10px;
    padding: 2rem;
    max-width: 600px;
}

.welcome-card h3 {
    color: #2c7a4b;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/* ── Menu table ──────────────────────────────────────────── */
.menu-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.menu-table th {
    background: #2c7a4b;
    color: #fff;
    padding: 0.7rem 1rem;
    text-align: left;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #444;
}

.menu-table tr:last-child td { border-bottom: none; }
.menu-table tr:hover td { background: #f9fbfa; }

/* ── Favorites ───────────────────────────────────────────── */
.favorites-list {
    list-style: none;
    margin-top: 1rem;
}

.favorites-list li {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #444;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.favorites-list li::before {
    content: '★';
    color: #f59e0b;
}

/* ── Maintain menu form ──────────────────────────────────── */
.maintain-section {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 700px;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.maintain-section h3 {
    color: #1a4d2e;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.maintain-section .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.maintain-section .form-row .form-group {
    flex: 1;
    min-width: 140px;
    margin-bottom: 0;
}

.maintain-section .form-group input,
.maintain-section .form-group select {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1.5px solid #cdd5df;
    border-radius: 6px;
    font-size: 0.9rem;
}

.btn-primary {
    background: #2c7a4b;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover { background: #235f3a; }

.supervisor-notice {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: #92400e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ── CRUD: Menu Items ────────────────────────────────────── */
.crud-table-wrap {
    margin-bottom: 2rem;
    overflow-x: auto;
}

.crud-table td { vertical-align: middle; }

.crud-actions {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.crud-actions form { margin: 0; }

.btn-sm {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.btn-sm:hover { opacity: 0.82; }

.btn-edit   { background: #3b82f6; color: #fff; }
.btn-danger { background: #ef4444; color: #fff; }
.btn-cancel { background: #94a3b8; color: #fff; }

.type-badge {
    background: #e2e8f0;
    color: #475569;
    border-radius: 10px;
    padding: 0.15rem 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: capitalize;
}

.meal-chips { white-space: nowrap; }

.chip {
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    line-height: 1.4rem;
    text-align: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 2px;
}

.chip-b { background: #fef3c7; color: #92400e; }
.chip-l { background: #d1fae5; color: #065f46; }
.chip-d { background: #ede9fe; color: #4c1d95; }

.ingredient-count { color: #94a3b8; font-size: 0.85rem; }

.editing-row td { background: #fffbeb !important; }

/* ── CRUD form ───────────────────────────────────────────── */
.crud-form-wrap {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 760px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.crud-form-wrap h3 {
    color: #1a4d2e;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
}

.crud-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.25rem;
}

.crud-form-grid .form-group { margin-bottom: 0; }
.crud-form-grid .form-group.span-2 { grid-column: span 2; }

.crud-form-grid input[type="text"],
.crud-form-grid select,
.crud-form-grid textarea {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1.5px solid #cdd5df;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
}

.crud-form-grid input[type="text"]:focus,
.crud-form-grid select:focus,
.crud-form-grid textarea:focus {
    outline: none;
    border-color: #2c7a4b;
}

.crud-form-grid label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.35rem;
}

.crud-form-grid label small { font-weight: 400; color: #94a3b8; }

.checkbox-row {
    display: flex;
    gap: 1rem;
    padding-top: 0.3rem;
}

.check-label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #444;
    cursor: pointer;
}

.check-label input[type="checkbox"] { cursor: pointer; }

.form-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

/* ── Next Week Menu: day cards ───────────────────────────── */
.day-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.day-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.day-card-header {
    background: #1a4d2e;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    letter-spacing: 0.3px;
}

.day-card-body {
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.picks-section {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.75rem;
}

.picks-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.pick-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.35rem 0;
}

.pick-row + .pick-row {
    border-top: 1px dashed #e2e8f0;
}

.pick-row-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.pick-meal {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pick-voters {
    font-size: 0.72rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pick-form {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.pick-select {
    flex: 1;
    padding: 0.35rem 0.6rem;
    border: 1.5px solid #cdd5df;
    border-radius: 6px;
    font-size: 0.82rem;
    font-family: inherit;
    background: #fafafa;
    min-width: 0;
}

.pick-select:focus {
    outline: none;
    border-color: #2c7a4b;
}

.btn-pick   { background: #2c7a4b; color: #fff; flex-shrink: 0; }
.btn-vote   { background: #3b82f6; color: #fff; flex-shrink: 0; }
.btn-voted  { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; flex-shrink: 0; }
.btn-undo   { background: #f1f5f9; color: #64748b; border: 1px solid #cbd5e1; flex-shrink: 0; }
.btn-locked { background: transparent; color: #cbd5e1; border: 1px solid #e2e8f0;
              cursor: default; flex-shrink: 0; pointer-events: none; }

.day-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.day-status-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.badge-picked { background: rgba(255,255,255,0.2); color: #fff; }
.badge-voted  { background: #3b82f6; color: #fff; }

/* ── Supervisor action bar ───────────────────────────────── */
.supervisor-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 2px solid #e2e8f0;
}

.supervisor-actions form { margin: 0; }

.btn-supervisor-danger {
    background: #fee2e2;
    color: #b91c1c;
    border: 1.5px solid #fca5a5;
    border-radius: 6px;
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-supervisor-danger:hover { background: #fecaca; }

/* ── Full-page calendar ──────────────────────────────────── */
.calendar-page {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 56px);
    padding: 1rem 1.5rem 2rem;
    gap: 0.75rem;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.calendar-month-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a4d2e;
    min-width: 200px;
    text-align: center;
}

.cal-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #2c7a4b;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.15s;
    user-select: none;
}

.cal-nav-btn:hover { background: #235f3a; }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: minmax(90px, auto);
    gap: 3px;
}

.cal-header-cell {
    background: #1a4d2e;
    color: #fff;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.45rem 0;
    border-radius: 4px;
}

.cal-cell {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.4rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.cal-cell:hover:not(.empty):not(.past) {
    border-color: #2c7a4b;
    box-shadow: 0 0 0 2px rgba(44, 122, 75, 0.15);
}

.cal-cell.empty {
    background: transparent;
    border-color: transparent;
    cursor: default;
}

.cal-cell.past {
    background: #f8fafc;
    cursor: default;
}

.cal-cell.past .cal-day-number {
    color: #94a3b8;
}

.cal-cell.today {
    border-color: #2c7a4b;
    border-width: 2px;
    box-shadow: 0 0 0 2px rgba(44, 122, 75, 0.2);
}

.cal-day-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    line-height: 1;
    flex-shrink: 0;
}

.cal-cell.today .cal-day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    background: #2c7a4b;
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
}

.cal-day-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.72rem;
    color: #64748b;
}

.cal-cell.week-selected {
    background: #f0faf5;
    border-color: #2c7a4b;
}

.cal-cell.week-selected .cal-day-number {
    color: #1a4d2e;
}

.cal-cell.today.week-selected .cal-day-number {
    background: #1a4d2e;
}

/* ── Week info bar ───────────────────────────────────────── */
.week-info-bar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c7a4b;
    color: #fff;
    border-radius: 6px;
    padding: 0.45rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* ── Calendar cell: locked meal ──────────────────────────── */
.cal-locked-meal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    border-radius: 4px;
    padding: 0.25rem 0.4rem;
}

.cal-locked-icon {
    font-size: 0.7rem;
    opacity: 0.7;
}

.cal-locked-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Calendar cell: proposed meals list ──────────────────── */
.cal-proposals {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cal-pick-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.3rem;
    padding: 0.2rem 0;
    border-top: 1px dashed #e2e8f0;
}

.cal-pick-row:first-child {
    border-top: none;
}

.cal-pick-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.cal-pick-meal {
    font-size: 0.72rem;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cal-pick-voters {
    font-size: 0.64rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Calendar cell: pick new form ────────────────────────── */
.cal-pick-form {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.15rem;
}

.cal-pick-select {
    font-size: 0.7rem !important;
    padding: 0.2rem 0.35rem !important;
}

.cal-empty-label {
    font-size: 0.68rem;
    color: #cbd5e1;
    font-style: italic;
}

.cal-time-info {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    font-size: 0.65rem;
    color: #64748b;
}

.cal-time-info span {
    background: #f1f5f9;
    border-radius: 3px;
    padding: 0.1rem 0.3rem;
}

/* Override btn-sm sizing inside calendar cells */
.cal-day-content .btn-sm {
    padding: 0.15rem 0.45rem;
    font-size: 0.68rem;
    flex-shrink: 0;
}

.cal-pick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex-shrink: 0;
    width: 4rem;
}

.cal-pick-actions form,
.cal-pick-actions .btn-sm {
    width: 100%;
    text-align: center;
}

.btn-lock-in {
    background: #7c3aed;
    color: #fff;
}

.btn-lock-in:hover { opacity: 0.85; }

.btn-unlock-choice {
    background: #fff7ed;
    color: #b45309;
    border: 1px solid #fed7aa;
}

.btn-unlock-choice:hover { background: #ffedd5; }

.cal-unlock-form {
    margin-top: auto;
    width: 100%;
}

.cal-unlock-btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* ── Supervisor FAB cluster (fixed, bottom-right) ────────── */
.supervisor-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    z-index: 100;
}

.fab-week-label {
    color: #1a4d2e;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    background: #fff;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.btn-grocery-list {
    background: #1a4d2e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-grocery-list:hover {
    background: #235f3a;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.btn-clear-week {
    background: #fee2e2;
    color: #b91c1c;
    border: 1.5px solid #fca5a5;
    border-radius: 8px;
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: background 0.2s;
}

.btn-clear-week:hover { background: #fecaca; }

.btn-find-menu {
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-find-menu:hover {
    background: #6d28d9;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.btn-menu-items {
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-menu-items:hover {
    background: #2563eb;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
