@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #fff5f7; /* lichtroze achtergrond */
    color: #8b4a6b; /* warm roze-paars voor tekst */
    min-height: 100vh;
}

h1.title, .title {
    font-weight: 600;
    color: #e91e63; /* helder roze */
}

.subtitle {
    color: #ad4a6b; /* medium roze */
}

hr {
     background-color: #f7c2d4;
}

/* Buttons */
.button.is-link, .button.is-primary {
    background-color: #f8b3c9; /* roze knop */
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 999px;
}

.button.is-link:hover, .button.is-primary:hover {
    background-color: #f48fb1;
}

.button.is-info {
    background-color: #f06292;
    color: white;
    border: none;
}

.button.is-info:hover {
    background-color: #ec407a;
}

.button.is-danger {
    background-color: #e57373;
    color: white;
    border: none;
}

.button.is-danger:hover {
    background-color: #ef5350;
}

.button.is-light {
    background-color: #fce4ec;
    color: #8b4a6b;
    border: 1px solid #f8bbd9;
}

.button.is-light:hover {
    background-color: #f8bbd9;
    color: #6a1b42;
}

.button.is-success {
    background-color: #f36e9b;
    color: white;
}

.button.is-success:hover {
    background-color: #ff4081;
}

/* Cards and Boxes */
.box, .notification, .card {
    background-color: #fff0f5; /* zacht pastelroze */
    border: 1px solid #f7c2d4;
    border-radius: 12px;
    color: #8b4a6b;
}

.card-content {
    background-color: #fff0f5;
}

/* Form Elements */
.input, .select select, .textarea {
    background-color: #fdf2f8;
    border: 1px solid #f7c2d4;
    color: #8b4a6b;
}

.input:focus, .select select:focus, .textarea:focus {
    border-color: #f48fb1;
    box-shadow: 0 0 0 0.125em rgba(244, 143, 177, 0.25);
}

.label {
    color: #ad4a6b;
    font-weight: 600;
}

/* Tables - Force override Bulma defaults */
.table {
    background-color: #fff0f5 !important;
    color: #8b4a6b !important;
    table-layout: fixed;
    width: 100%;
}

.table th {
    background-color: #f8b3c9 !important;
    color: white !important;
    font-weight: 600;
    border-color: #f7c2d4 !important;
    padding: 1rem 0.75rem;
    word-wrap: break-word;
}

.table td {
    background-color: #fff0f5 !important;
    color: #8b4a6b !important;
    border-color: #f7c2d4 !important;
    padding: 1rem 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.table tbody tr {
    background-color: #fff0f5 !important;
}

.table.is-striped tbody tr:nth-child(even) {
    background-color: #fdf2f8 !important;
}

.table.is-striped tbody tr:nth-child(even) td {
    background-color: #fdf2f8 !important;
    color: #8b4a6b !important;
}

.table tbody tr:hover {
    background-color: #fce4ec !important;
}

.table tbody tr:hover td {
    background-color: #fce4ec !important;
    color: #6a1b42 !important;
}

.autocomplete-container {
    position: relative;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.autocomplete-suggestion {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
}

.autocomplete-suggestion:hover,
.autocomplete-suggestion.selected {
    background-color: #f5f5f5;
}

.autocomplete-suggestion:last-child {
    border-bottom: none;
}

.usage-count {
    font-size: 0.8em;
    color: #999;
    float: right;
}

/* Tabs */
.tabs {
    border-bottom: 2px solid #f7c2d4;
    margin-bottom: 1.5rem;
}

.tabs ul {
    border-bottom: none;
    padding-left: 0;
}

.tabs li {
    margin-bottom: -2px;
}

.tabs a {
    border-bottom: 2px solid transparent;
    color: #ad4a6b;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.tabs a:hover {
    border-bottom-color: #f8b3c9;
    color: #e91e63;
    background-color: #fdf2f8;
}

.tabs li.is-active a {
    border-bottom-color: #f48fb1;
    color: #e91e63;
    font-weight: 600;
    background-color: #fff0f5;
}

.tabs a .icon {
    color: #f06292;
}

.tabs li.is-active a .icon {
    color: #e91e63;
}

/* Optional: Boxed tabs variant */
.tabs.is-boxed a {
    border: 1px solid transparent;
    border-radius: 12px 12px 0 0;
}

.tabs.is-boxed a:hover {
    background-color: #fdf2f8;
    border-bottom-color: #f7c2d4;
}

.tabs.is-boxed li.is-active a {
    background-color: #fff0f5;
    border-color: #f7c2d4;
    border-bottom-color: #fff0f5 !important;
}

/* Optional: Toggle tabs variant */
.tabs.is-toggle li a {
    border: 1px solid #f7c2d4;
    margin-bottom: 0;
    border-radius: 999px;
    margin-right: 0.5rem;
}

.tabs.is-toggle li.is-active a {
    background-color: #f8b3c9;
    border-color: #f8b3c9;
    color: white;
    z-index: 1;
}

.tabs.is-toggle li.is-active a .icon {
    color: white;
}

.meal-card-eaten {
  opacity: 0.5;
  position: relative;
}

.meal-card-eaten::after {
  content: '✓ Gegeten';
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #48c774;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  pointer-events: none;
}

.meal-card-eaten .card {
  background-color: #f5f5f5;
}

.meal-card-eaten .title,
.meal-card-eaten .subtitle {
  color: #7a7a7a !important;
}

.meal-card-clickable {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.meal-card-clickable:hover {
  transform: translateY(-2px);
}

.meal-card-clickable .card {
  transition: box-shadow 0.2s ease;
}

.meal-card-clickable:hover .card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.meal-actions {
  position: relative;
  z-index: 10;
}

/* Responsive table improvements */
@media screen and (max-width: 768px) {
    .table {
        font-size: 0.9rem;
    }
    
    .table th,
    .table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Notifications */
.notification.is-info {
    background-color: #fce4ec;
    color: #8b4a6b;
    border: 1px solid #f8bbd9;
}

.notification.is-success {
    background-color: #f3e5f5;
    color: #6a1b42;
    border: 1px solid #e1bee7;
}

.notification.is-danger {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.notification.is-warning {
    background-color: #fff3e0;
    color: #e65100;
    border: 1px solid #ffcc02;
}

/* Tags */
.tag.is-dark {
    background-color: #ad4a6b;
    color: white;
}

.tag.is-link {
    background-color: #f8b3c9;
    color: white;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 1rem;
    font-weight: 500;
}

ul li::before {
    font-weight: bold;
    margin-right: 4px;
}

/* Breadcrumb */
.breadcrumb a {
    color: #f06292;
}

.breadcrumb li.is-active a {
    color: #ad4a6b;
}

/* Level component */
.level {
    color: #8b4a6b;
}

/* Help text */
.help {
    color: #c08497;
}

/* Headings in stats */
.heading {
    color: #ad4a6b;
    font-weight: 600;
}

/* Links */
a {
    color: #f06292;
}

a:hover {
    color: #e91e63;
}

/* Force override any remaining dark elements */
.table-container {
    background-color: #fff0f5 !important;
}

/* Override any dark/black backgrounds */
.has-background-dark,
.is-dark,
tbody tr {
    background-color: #fff0f5 !important;
    color: #8b4a6b !important;
}

/* Ensure all text is readable */
* {
    color: inherit;
}

/* Strong text styling */
strong {
    color: #6a1b42 !important;
    font-weight: 600;
}

/* Text colors */
.has-text-primary {
    color: #e91e63 !important;
}

.has-text-info {
    color: #f06292 !important;
}

.has-text-grey {
    color: #c08497 !important;
}

/* Grocery Items Styling */
.grocery-item {
    padding: 8px 12px;
    margin: 4px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: move;
    display: inline-block;
    transition: all 0.2s ease;
}

.change-person-amount-options {
  border-top: 1px solid #e8e8e8;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  background-color: #f0f8ff;
  padding: 0.75rem;
  border-radius: 6px;
  border-left: 3px solid #3298dc;
  margin-bottom: 1.25rem;
}

.change-person-amount-options .field.has-addons .control .button {
  height: 2rem; /* Ensure all buttons have the same height */
}

.change-person-amount-options .field.has-addons .control .input {
  height: 2rem; /* Match input height to button height */
}

.grocery-item:hover {
    background: #e8f4f8;
    border-color: #3273dc;
    transform: translateY(-1px);
}

.grocery-item.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

/* Store Container Styling */
.store-container {
    min-height: 60px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 12px;
    margin: 8px 0;
    transition: all 0.2s ease;
}

.store-container.drag-over {
    border-color: #3273dc;
    background-color: #f0f8ff;
}

.store-container h4 {
    margin-bottom: 8px;
    font-weight: bold;
}

.unassigned-items {
    border-color: #ff9800;
    background-color: #fff8e1;
}

.store-selection {
    margin-bottom: 20px;
}

.store-checkbox {
    margin: 0 15px 10px 0;
}

#grocerySection {
    display: none;
}

#foldersSection{
    display: none;
}

/* Custom Ingredients Styling */
.grocery-item.custom-ingredient {
    background-color: #e3f2fd;
    border: 1px dashed #2196f3;
    position: relative;
}

.grocery-item.custom-ingredient::before {
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: 10px;
    opacity: 0.7;
}

.grocery-item.custom-ingredient:hover {
    background-color: #bbdefb;
    transform: scale(1.02);
    transition: all 0.2s ease;
}

/* Custom ingredient input section */
.custom-ingredient-section {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.custom-ingredient-section .subtitle {
    margin-bottom: 0.5rem !important;
    color: #495057;
}

.custom-ingredient-section .button.is-success {
    border-radius: 4px;
    font-weight: 600;
}

.custom-ingredient-section .input {
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out;
}

.custom-ingredient-section .input:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Meal Actions Styling */
.meal-actions {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    gap: 4px;
    opacity: 1; /* Always show meal actions */
    transition: opacity 0.2s ease;
}

.card:hover .meal-actions {
    opacity: 1;
}

.meal-action-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    width: 28px;
    height: 28px;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.meal-action-btn:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

/* View details button */
.meal-action-btn:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(50, 115, 220, 0.15));
    color: #f8b3c9;
    border-color: rgba(74, 144, 226, 0.3);
}

/* Replace button */
.meal-action-btn:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.15));
    color: #f39c12;
    border-color: rgba(255, 193, 7, 0.3);
}

/* Delete button */
.meal-action-btn.delete-btn:hover {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.15));
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.3);
}

/* Make sure card has relative positioning */
.card {
    position: relative;
}

/* Optional: Add a subtle animation when actions appear */
.meal-actions.show {
    animation: fadeInScale 0.3s ease;
}


.buttons.is-right.small {
    gap: .15rem;
}

.grocery-item input.input {
  font-family: inherit;
  font-size: inherit;
}

.grocery-item.editing {
  background-color: #f0f8ff;
  border: 1px dashed #3273dc;
}



@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.staples-table {
    min-height: 60px;
    border: 2px;
    padding: 0 12px 0 12px;
    margin: 8px 0;
    transition: all 0.2s ease;
    border: 1px solid #f7c2d4;
    border-radius: 12px;
}

.staples-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f7c2d4;
    font-weight: 600;
    color: #ad4a6b;
}

.staple-row {
    min-height: 60px;
    padding: 0 12px 0 12px;
    margin-top: 8px;   /* boven 8px */
    margin-bottom: 0;  /* onder 0px */
    transition: all 0.2s ease;
    border-bottom: 1px solid #f7c2d4;
}

.columns.is-gapless:not(:last-child) {
    margin-bottom: 0.5rem; 
}

.staple-row:last-child {
    border-bottom: none;
}

.staple-row.inactive {
    opacity: 0.6;
    background-color: #f8f8f8;
}

.edit-form {
    display: none;
    padding: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    border: 1px solid #f7c2d4;
}

.edit-form.active {
    display: block;
}

.store-header .input.is-small,
.store-header .button.is-small {
  height: 2.5em;      /* maak iets hoger dan standaard */
  line-height: 2.5em; /* zorgt dat tekst/icon mooi verticaal centreert */
}

.store-header .button.is-small i {
  font-size: 0.9em;   /* icon netjes in verhouding */
}

.staple-actions {
    transition: opacity 0.2s ease;
}

.staple-row:hover .staple-actions {
    opacity: 1;
}

.product-info {
    flex: 1;
}

.product-name {
    font-weight: 500;
    color: #363636;
}

.product-amount {
    color: #7a7a7a;
    font-size: 0.9em;
}
/* App Header Styling */
.app-header {
    background: #f8b3c9;
    color: white;
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.app-header .title {
    color: white;
    margin-bottom: 0.5rem;
}

.app-header .subtitle {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.header-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
}

.header-nav .buttons {
    margin-bottom: 0;
}

.week-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.week-selector .select select {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.week-selector .select select option {
    background: #363636;
    color: white;
}

.week-selector .button {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.week-selector .button:hover {
    background: rgba(255,255,255,0.3);
}

.store-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.store-dropdown {
    padding: 12px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    background-color: #fdf2f8;
    border: 1px solid #f7c2d4;
    color: #8b4a6b;
    border-radius: 8px;
}

.store-dropdown:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.store-dropdown:hover {
    border-color: #007bff;
}

.current-view {
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.iframe-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    height: 800px;
    position: relative;
    width:40%;
}

.iframe-container iframe {
    width:100%;
    height: 100%;
    border: none;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.powered-by {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 0.9em;
}

.powered-by a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.powered-by a:hover {
    text-decoration: underline;
}

.main-content-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* Grocery section - fixed width */
.grocery-section {
    flex: 0 0 100%; /* Fixed width, no grow/shrink */
    min-width: 0; /* Allow content to shrink */
}

/* Store folders section */
.store-folders-section {
    flex: 0 0 60%; /* Fixed width for folders */
    min-width: 0;
}

/* Adjust iframe container for side layout */
.store-folders-section .iframe-container {
    width: 100%; /* Full width of its container */
    height: 700px; /* Slightly smaller to fit better */
}

#notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: auto;
  max-width: 400px;
}

#notification {
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#notification.show {
  opacity: 1;
  transform: translateY(0);
}

#notification.is-hidden {
  display: none;
}

/* Additional pagination styling to match your theme */
.pagination {
font-family: 'Quicksand', sans-serif;
}

.pagination-previous, .pagination-next {
background-color: #f8b3c9;
color: white;
border: none;
font-weight: 600;
border-radius: 999px;
}

.pagination-previous:hover, .pagination-next:hover {
background-color: #f48fb1;
color: white;
}

.pagination-previous[disabled], .pagination-next[disabled] {
background-color: #fce4ec;
color: #8b4a6b;
border: 1px solid #f8bbd9;
}

.pagination-link {
background-color: #fff0f5;
color: #8b4a6b;
border: 1px solid #f7c2d4;
border-radius: 8px;
font-weight: 600;
}

.pagination-link:hover {
background-color: #fce4ec;
color: #6a1b42;
border-color: #f48fb1;
}

.pagination-link.is-current {
background-color: #f8b3c9;
color: white;
border-color: #f8b3c9;
}

.pagination-ellipsis {
color: #ad4a6b;
}

/* Styling for the per-page selector box */
.box {
background-color: #fff0f5;
border: 1px solid #f7c2d4;
border-radius: 12px;
}

.select select {
background-color: #fdf2f8;
border: 1px solid #f7c2d4;
color: #8b4a6b;
border-radius: 8px;
}

.select select:focus {
border-color: #f48fb1;
box-shadow: 0 0 0 0.125em rgba(244, 143, 177, 0.25);
}

.has-text-grey {
color: #ad4a6b !important;
}


/* Add this to your existing CSS file */

.google-task-item {
  border-left: 4px solid #3273dc;
  background: linear-gradient(135deg, #f0f7ff, #e3f2fd);
}

.google-task-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(50, 115, 220, 0.2);
}

#google-tasks-container {
  border: 2px dashed #3273dc;
  background: linear-gradient(135deg, #f8fbff, #f0f7ff);
}

#google-tasks-container h4 {
  color: #3273dc;
  font-weight: 600;
}


.autocomplete-container {
    position: relative;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block !important;
}

.autocomplete-suggestion {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.autocomplete-suggestion:hover,
.autocomplete-suggestion.active {
    background-color: #f5f5f5;
}

.autocomplete-suggestion:last-child {
    border-bottom: none;
}

.modal {
  --bulma-modal-z: 1050;
  --bulma-modal-background-background-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.86);
  --bulma-modal-content-width: 40rem;
  --bulma-modal-content-margin-mobile: 1.25rem;
  --bulma-modal-content-spacing-mobile: 10rem;
  --bulma-modal-content-spacing-tablet: 2.5rem;
  --bulma-modal-close-dimensions: 2.5rem;
  --bulma-modal-close-right: 1.25rem;
  --bulma-modal-close-top: 1.25rem;
  --bulma-modal-card-spacing: 2.5rem;

  --bulma-modal-card-head-background-color: #fff0f5;
  --bulma-modal-card-head-padding: 1rem;
  --bulma-modal-card-head-radius: var(--bulma-radius-large);

  --bulma-modal-card-title-color: #ad4a6b;
  --bulma-modal-card-title-line-height: 1;
  --bulma-modal-card-title-size: var(--bulma-size-4);

  --bulma-modal-card-foot-background-color: #fff0f5;
  --bulma-modal-card-foot-radius: var(--bulma-radius-large);

  --bulma-modal-card-body-background-color: #fff0f5;
  --bulma-modal-card-body-padding: 1rem;
}

.tag.is-info {
    background-color: #f36e9b;
    color: white;
}

.button.is-success[disabled],
fieldset[disabled] .button.is-success {
    background-color: #f8b3c9;
}
/* MOBILE RESPONSIVE STYLING */
@media screen and (max-width: 768px) {
    /* Fix header layout on mobile */
    .level {
        flex-direction: column !important;
    }

    .column.is-10-mobile {
        flex: none;
        width: calc(100% - var(--bulma-column-gap) / 2); 
    }
    
    .level-left, .level-right {
        align-self: stretch;
        justify-content: center;
    }
    
    /* Make title smaller on mobile */
    .app-header .title.is-4 {
        font-size: 1.3rem !important;
        padding-top: 0.4rem;
    }
    
    /* Stack buttons vertically */
    .buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .button {
        width: 100%;
    }

    .buttons.mb-0 {
        display: none !important;
    }
    .button.is-small.is-danger.overzicht{
        display: none !important;
    }
    .button.is-danger.overzicht {
        display: none !important;
    }
    /* Make week selector stack */
    .week-selector {
        gap: 0.75rem;
        background: none;
    }
    
    .week-selector .select {
        width: 100%;
    }
    
    .week-selector .button {
        width: 100%;
    }
    
    /* Fix meal action buttons on mobile */
    .meal-action-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    /* Make grocery items larger for touch */
    .grocery-item {
        padding: 12px 16px;
        margin: 6px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Fix store checkboxes */
    .store-checkbox {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 0.75rem;
        background: rgba(255,255,255,0.5);
        border-radius: 6px;
    }
    
    /* Fix form inputs */
    .input, .select select {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }
    
    /* Stack add ingredient form */
    .field.has-addons {
        flex-direction: column;
    }
    
    .field.has-addons .control {
        margin-bottom: 0.5rem;
    }
    
    .field.has-addons .control.is-expanded {
        width: 100%;
    }
    
    /* Fix table on mobile */
    .table {
        font-size: 0.8rem;
    }
    
    .table th,
    .table td {
        padding: 0.5rem 0.25rem;
    }
    
    /* Better spacing */
    .section {
        padding: 1rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }

    .level-right {
    flex-direction: row;
    }
        .iframe-container {
        height: 600px;
    }
    
    .store-selector {
        flex-direction: column;
        text-align: center;
    }
    
    .store-dropdown {
        min-width: 250px;
    }
}