* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333333;
    background: #FFFFFF;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: #FFFFFF;
    color: #333333;
    padding: 2rem 0;
    border-bottom: 1px solid #E6E6E6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-section {
    flex-shrink: 0;
}

.logo {
    height: 170px;
    width: auto;
    max-height: 170px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #D4A574;
    font-family: 'Aladin', cursive;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    font-size: 2.2rem;
    color: #E8A87C;
}

.search-section {
    background: #FAFAFA;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    flex: 1;
    max-width: 1000px;
    position: relative;
}

.search-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.search-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.75rem;
}

.admin-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Form Elements */
input[type="text"], select {
    padding: 0.75rem 1rem;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    background: #FFFFFF;
    transition: all 0.3s ease;
    color: #333333;
}

input[type="text"]#searchInput {
    min-width: 250px;
    flex: 1;
    max-width: 700px;
}

input[type="text"]:focus, select:focus {
    outline: none;
    border-color: #E8A87C;
    box-shadow: 0 0 0 2px rgba(232, 168, 124, 0.2);
}

button {
    background: #E8A87C;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

button:hover {
    background: #D4A574;
    transform: translateY(-1px);
}

.clear-btn {
    background: #B8B8B8;
}

.clear-btn:hover {
    background: #A0A0A0;
}

/* Login and Admin Controls */
.login-link {
    color: #4A90E2;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid transparent;
}

.login-link:hover {
    color: #357ABD;
    background: rgba(74, 144, 226, 0.1);
    border-color: rgba(74, 144, 226, 0.2);
}

.admin-controls-section {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.logout-btn {
    background: #DC6B6B;
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #C85A5A;
    transform: translateY(-1px);
}

.admin-section {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.admin-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #F0F0F0;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #666666;
    border: 1px solid #DDDDDD;
}

.admin-toggle:hover {
    background: #E8E8E8;
}

.admin-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #E8A87C;
}

.admin-only-controls {
    display: none;
    gap: 0.75rem;
}

.admin-only-controls.admin-active {
    display: flex;
}

/* Filters */
.filters {
    background: #FEFEFE;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #F0F0F0;
}

.filter-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.view-toggle-buttons {
    display: flex;
    gap: 0.25rem;
}

.view-toggle-buttons button {
    background: #E8E8E8;
    border: 1px solid #CCCCCC;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.view-toggle-buttons button:hover {
    background: #D4D4D4;
}

.admin-filters {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #F0F0F0;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.admin-filters.admin-active {
    display: flex;
}

/* Shopping List Styles */
.shopping-list-controls {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #e1e8ed;
    display: none;
}

.shopping-list-controls.active {
    display: block;
}

.shopping-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.shopping-list-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.shopping-list-btn {
    background: #55a3ff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.shopping-list-btn:hover {
    background: #4a90e2;
    transform: translateY(-1px);
}

.shopping-list-btn.clear {
    background: #dc6b6b;
}

.shopping-list-btn.clear:hover {
    background: #c85a5a;
}

.selected-recipes {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.recipe-selection-checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}

/* Recipe Grid and Cards */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.recipe-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recipe-grid.list-view .recipe-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 1rem;
}

.recipe-grid.list-view .recipe-image {
    height: 100px;
    width: 100px;
    flex-shrink: 0;
}

.recipe-grid.list-view .recipe-content {
    padding: 0 1rem;
}

.recipe-grid.compact-grid-view {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.recipe-grid.compact-grid-view .recipe-card {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    gap: 0.5rem;
}

.recipe-grid.compact-grid-view .recipe-image {
    height: 80px;
}

.recipe-grid.compact-grid-view .recipe-content {
    padding: 0;
}

.recipe-grid.compact-grid-view .recipe-title {
    font-size: 1rem;
}

.recipe-grid.compact-grid-view .recipe-meta {
    font-size: 0.7rem;
}

.recipe-grid.compact-grid-view .recipe-tags {
    display: none;
}

.recipe-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #F0F0F0;
    position: relative;
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.recipe-card.selected {
    border: 3px solid #55a3ff;
    box-shadow: 0 8px 24px rgba(85, 163, 255, 0.3);
}

.recipe-image {
    height: 250px;
    background: linear-gradient(135deg, #F8F4F0 0%, #E8A87C 50%, #D4A574 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-image.no-photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: none;
    gap: 5px;
}

.recipe-card:hover .photo-actions {
    display: flex;
}

.photo-btn {
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    border: none;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.recipe-content {
    padding: 1.5rem;
}

.recipe-title {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: #333333;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #888888;
    font-family: 'Outfit', sans-serif;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.recipe-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    background: #F8F4F0;
    color: #D4A574;
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    border: 1px solid #E8E0D6;
}

.recipe-preview {
    color: #666666;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    line-height: 1.5;
    font-family: 'Outfit', sans-serif;
}

.recipe-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    justify-content: space-between;
    align-items: center;
}

.delete-btn {
    background: #DC6B6B;
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: #C85A5A;
    transform: translateY(-1px);
}

.recipe-date {
    font-size: 0.8rem;
    color: #AAAAAA;
    font-style: italic;
    font-family: 'Outfit', sans-serif;
}

/* "This Week" Recipe Group Styles - FIXED */
.recipe-group-this-week {
    width: 100%;
    margin-bottom: 2rem;
}

.recipe-group-header {
    font-size: 1.5rem;
    font-weight: 400;
    color: #E8A87C;
    margin-bottom: 1rem;
    text-align: left;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    border-bottom: 2px solid #F0F0F0;
    padding-bottom: 0.5rem;
}

.recipe-group-this-week-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.recipe-card-small {
    flex: 0 0 auto;
    width: 200px;
    min-width: 180px;
    max-width: 220px;
    font-size: 0.9rem;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin: 0;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.recipe-card-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.recipe-card-small .recipe-image {
    height: 80px;
    min-height: 80px;
}

.recipe-card-small .recipe-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.recipe-card-small .recipe-meta {
    font-size: 0.8rem;
    gap: 0.5rem;
}

.recipe-card-small .recipe-content {
    padding: 0.5rem 0;
}

.recipe-card-small .recipe-preview {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    line-height: 1.3;
}

.recipe-card-small .recipe-tags {
    margin-top: 0.5rem;
}

.recipe-card-small .tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
}

.group-separator {
    border: none;
    border-top: 2px solid #EEE;
    margin: 1.5rem 0 2rem 0;
    width: 100%;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.modal-content {
    background: #FFFFFF;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: #DC6B6B;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    z-index: 10;
}

.modal-close-btn:hover {
    background: #C85A5A;
}

.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
}

.login-content {
    background: #FFFFFF;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-form h3 {
    margin-bottom: 1rem;
    color: #333333;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #555555;
    font-family: 'Outfit', sans-serif;
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.login-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.login-submit {
    background: #4A90E2;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.login-submit:hover {
    background: #357ABD;
}

.login-cancel {
    background: #B8B8B8;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.login-cancel:hover {
    background: #A0A0A0;
}

.login-error {
    color: #DC6B6B;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
    display: none;
}

.confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
}

.confirmation-content {
    background: #FFFFFF;
    margin: 20% auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.confirm-delete {
    background: #DC6B6B;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.cancel-delete {
    background: #B8B8B8;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    color: #AAAAAA;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333333;
}

.modal h2 {
    margin-bottom: 1rem;
    color: #333333;
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

.modal-recipe-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.photo-upload-section {
    background: #F8F8F8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 2px dashed #CCCCCC;
}

.photo-upload-area {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    left: -9999px;
}

.file-input-label {
    background: #E8A87C;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.file-input-label:hover {
    background: #D4A574;
    transform: translateY(-1px);
}

.upload-status {
    font-size: 0.9rem;
    color: #666666;
}

.ingredients-section, .instructions-section {
    margin: 2rem 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #E8A87C;
    font-family: 'Outfit', sans-serif;
    border-bottom: 2px solid #F0F0F0;
    padding-bottom: 0.5rem;
}

.ingredients-list {
    list-style: none;
    padding: 0;
}

.ingredients-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #F8F8F8;
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
}

.ingredients-list li:before {
    content: "•";
    color: #E8A87C;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.instructions-list {
    list-style: none;
    padding: 0;
}

.instructions-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #F8F8F8;
    display: flex;
    gap: 1rem;
    font-family: 'Outfit', sans-serif;
}

.step-number {
    background: #E8A87C;
    color: #FFFFFF;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

/* Shopping List Modal */
.shopping-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1002;
}

.shopping-modal-content {
    background: white;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.shopping-list-container {
    margin: 1.5rem 0;
}

.ingredient-category {
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e1e8ed;
}

.ingredient-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.ingredient-checkbox {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
}

.ingredient-text {
    flex: 1;
    font-size: 0.95rem;
}

.ingredient-text.checked {
    text-decoration: line-through;
    color: #888;
}

.shopping-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.export-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.export-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.email-btn {
    background: #17a2b8;
    color: white;
}

.email-btn:hover {
    background: #138496;
}

/* No Recipes State */
.no-recipes {
    text-align: center;
    padding: 4rem 2rem;
    color: #888888;
}

.no-recipes h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #E8A87C;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #F0F0F0;
    border-top: 3px solid #E8A87C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .logo-section {
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    .search-section {
        width: 100%;
        max-width: none;
    }

    .search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-controls {
        flex-direction: column;
        align-items: stretch;
    }

    input[type="text"]#searchInput {
        min-width: auto;
        width: 100%;
    }

    .recipe-grid {
        grid-template-columns: 1fr;
    }

    .filter-row, .admin-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .recipe-group-this-week-grid {
        flex-direction: column;
    }

    .recipe-card-small {
        width: 100%;
        max-width: none;
    }

    .shopping-list-actions {
        flex-direction: column;
    }
    
    .shopping-actions {
        flex-direction: column;
    }
    
    .shopping-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .shopping-list-actions {
        flex-direction: column;
    }
    
    .shopping-actions {
        flex-direction: column;
    }
    
    .shopping-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
}