/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-ybb6akntih] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ybb6akntih] {
    flex: 1;
}

a[b-ybb6akntih] {
    color: #FFFFFF;
    font-weight: bold;
}

.top-row[b-ybb6akntih] {
    background-color: #162A40;
    border-bottom: 1px solid #d6d5d5;
    justify-content: center;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ybb6akntih]  a, .top-row[b-ybb6akntih]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ybb6akntih]  a:hover, .top-row[b-ybb6akntih]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ybb6akntih]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ybb6akntih] {
        justify-content: space-between;
    }

    .top-row[b-ybb6akntih]  a, .top-row[b-ybb6akntih]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ybb6akntih] {
        flex-direction: row;
    }

    .sidebar[b-ybb6akntih] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ybb6akntih] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ybb6akntih]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ybb6akntih], article[b-ybb6akntih] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/ToDoList.razor.rz.scp.css */
/* Meal Planning Styles */
.meal-planning-container[b-rux97zzy8x] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.page-title[b-rux97zzy8x] {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #FFFFFF, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Add Meal Form Card */
.add-meal-card[b-rux97zzy8x] {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.add-meal-card h3[b-rux97zzy8x] {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-row[b-rux97zzy8x] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .form-row[b-rux97zzy8x] {
        grid-template-columns: 1fr;
    }
}

.form-group[b-rux97zzy8x] {
    display: flex;
    flex-direction: column;
}

.form-group label[b-rux97zzy8x] {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-control[b-rux97zzy8x] {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus[b-rux97zzy8x] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-add[b-rux97zzy8x] {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-add:hover:not(:disabled)[b-rux97zzy8x] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-add:disabled[b-rux97zzy8x] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Section Header */
.meal-plans-section[b-rux97zzy8x] {
    margin-top: 3rem;
}

.section-header[b-rux97zzy8x] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h3[b-rux97zzy8x] {
    color: #FFFFFF;
    margin: 0;
    font-weight: 600;
}

.view-controls[b-rux97zzy8x] {
    display: flex;
    gap: 0.5rem;
}

.view-controls .btn[b-rux97zzy8x] {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.view-controls .btn.active[b-rux97zzy8x] {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* Loading and Empty States */
.loading-state[b-rux97zzy8x] {
    text-align: center;
    padding: 3rem;
}

.loading-state .spinner-border[b-rux97zzy8x] {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.empty-state[b-rux97zzy8x] {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.empty-icon[b-rux97zzy8x] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h4[b-rux97zzy8x] {
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Meal Cards Container */
.meal-cards-container[b-rux97zzy8x] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .meal-cards-container[b-rux97zzy8x] {
        grid-template-columns: 1fr;
    }
}

/* Individual Meal Card */
.meal-card[b-rux97zzy8x] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    overflow: hidden;
}

.meal-card:hover[b-rux97zzy8x] {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.meal-card.completed[b-rux97zzy8x] {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, white 100%);
}

.meal-card.pending[b-rux97zzy8x] {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, white 100%);
}

/* Card Header */
.meal-card-header[b-rux97zzy8x] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
}

.meal-info .meal-date[b-rux97zzy8x] {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.meal-info .meal-type[b-rux97zzy8x] {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.status-badge[b-rux97zzy8x] {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.completed[b-rux97zzy8x] {
    background-color: #d1fae5;
    color: #065f46;
}

.status-badge.pending[b-rux97zzy8x] {
    background-color: #fef3c7;
    color: #92400e;
}

/* Card Body */
.meal-card-body[b-rux97zzy8x] {
    padding: 0 1.5rem 1rem 1.5rem;
}

.dish-name[b-rux97zzy8x] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.meal-notes[b-rux97zzy8x] {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.5rem 0 0 0;
    font-style: italic;
}

/* Card Actions */
.meal-card-actions[b-rux97zzy8x] {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.meal-card-actions .btn[b-rux97zzy8x] {
    flex: 1;
    border-radius: 6px;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s;
}

.meal-card-actions .btn:hover:not(:disabled)[b-rux97zzy8x] {
    transform: translateY(-1px);
}

.meal-card-actions .btn:disabled[b-rux97zzy8x] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 480px) {
    .meal-planning-container[b-rux97zzy8x] {
        padding: 1rem;
    }

    .page-title[b-rux97zzy8x] {
        font-size: 2rem;
    }

    .add-meal-card[b-rux97zzy8x] {
        padding: 1.5rem;
    }

    .section-header[b-rux97zzy8x] {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .meal-card-actions[b-rux97zzy8x] {
        flex-direction: column;
    }
}
