@charset "UTF-8";
.nutrition-form-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
  @media (max-width: 768px) {
    .nutrition-form-section {
      padding: 20px; } }
  @media (max-width: 992px) {
    .nutrition-form-section {
      padding: 25px; } }

.section-title {
  font-size: 1.8rem;
  color: #0056a6;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffcc00; }
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.5rem;
      margin-bottom: 20px; } }

.nutrition-form .form-group {
  margin-bottom: 25px; }
  @media (max-width: 768px) {
    .nutrition-form .form-group {
      margin-bottom: 20px; } }
.nutrition-form .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #666; }
  .nutrition-form .form-label::after {
    content: '*';
    color: #dc3545;
    margin-left: 4px; }
.nutrition-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease; }
  .nutrition-form .form-control:focus {
    outline: none;
    border-color: #0056a6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
  .nutrition-form .form-control.snils-input {
    max-width: 300px; }
    @media (max-width: 768px) {
      .nutrition-form .form-control.snils-input {
        max-width: 100%; } }
  .nutrition-form .form-control.validation-input {
    max-width: 200px;
    display: inline-block;
    margin-left: 15px; }
    @media (max-width: 768px) {
      .nutrition-form .form-control.validation-input {
        max-width: 150px;
        margin-left: 10px; } }
    @media (max-width: 480px) {
      .nutrition-form .form-control.validation-input {
        max-width: 120px;
        margin-left: 8px; } }
.nutrition-form .snils-input-wrapper .snils-input-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 10px; }
  @media (max-width: 768px) {
    .nutrition-form .snils-input-wrapper .snils-input-row {
      flex-direction: column;
      gap: 15px; } }
  .nutrition-form .snils-input-wrapper .snils-input-row .snils-input {
    flex: 1;
    min-width: 0; }
  .nutrition-form .snils-input-wrapper .snils-input-row .qr-btn {
    min-width: 160px;
    white-space: nowrap;
    flex-shrink: 0; }
    @media (max-width: 992px) {
      .nutrition-form .snils-input-wrapper .snils-input-row .qr-btn {
        min-width: 140px;
        font-size: 0.9rem; } }
    @media (max-width: 768px) {
      .nutrition-form .snils-input-wrapper .snils-input-row .qr-btn {
        min-width: auto;
        width: 100%;
        justify-content: center; } }
    @media (max-width: 480px) {
      .nutrition-form .snils-input-wrapper .snils-input-row .qr-btn .qr-btn-text {
        display: none; }
      .nutrition-form .snils-input-wrapper .snils-input-row .qr-btn::after {
        content: "QR";
        margin-left: 5px; } }
.nutrition-form .snils-input-wrapper .form-hint-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 3px solid #ffc107;
  padding: 10px 15px;
  border-radius: 0 4px 4px 0;
  font-size: 0.85rem;
  color: #a07800;
  margin-top: 10px; }
  @media (max-width: 768px) {
    .nutrition-form .snils-input-wrapper .form-hint-warning {
      font-size: 0.8rem;
      padding: 8px 12px; } }
.nutrition-form .form-hint {
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
  max-width: 500px; }
.nutrition-form span.form-hint {
  margin-top: 0; }

.table-responsive {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: 4px;
  border: 1px solid #f5f5f5; }
  @media (max-width: 768px) {
    .table-responsive {
      margin-bottom: 25px;
      border: none;
      overflow-x: visible; } }

@media (max-width: 768px) {
  .desktop-table {
    display: none; } }

.mobile-table-wrapper {
  display: none; }
  @media (max-width: 768px) {
    .mobile-table-wrapper {
      display: block; } }

.mobile-canteen-selector {
  display: flex;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 4px;
  gap: 2px; }
  .mobile-canteen-selector .canteen-btn {
    flex: 1;
    padding: 10px 8px;
    border: none;
    background-color: transparent;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px; }
    .mobile-canteen-selector .canteen-btn .canteen-short {
      display: none;
      font-weight: 600;
      font-size: 0.7rem;
      text-transform: uppercase; }
    .mobile-canteen-selector .canteen-btn .canteen-full {
      display: block;
      line-height: 1.2; }
    @media (max-width: 480px) {
      .mobile-canteen-selector .canteen-btn {
        padding: 8px 4px;
        font-size: 0.7rem;
        min-height: 40px; }
        .mobile-canteen-selector .canteen-btn .canteen-short {
          display: block; }
        .mobile-canteen-selector .canteen-btn .canteen-full {
          display: none; } }
    .mobile-canteen-selector .canteen-btn:hover {
      background-color: rgba(0, 86, 166, 0.1);
      color: #0056a6; }
    .mobile-canteen-selector .canteen-btn.active {
      background-color: #0056a6;
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
      .mobile-canteen-selector .canteen-btn.active:hover {
        background-color: #003c73;
        color: #fff; }

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 800px; }
  @media (max-width: 992px) {
    .nutrition-table {
      min-width: 700px;
      font-size: 0.85rem; } }
  @media (max-width: 768px) {
    .nutrition-table.desktop-table {
      min-width: 600px;
      font-size: 0.8rem; } }
  @media (max-width: 480px) {
    .nutrition-table.desktop-table {
      min-width: 500px;
      font-size: 0.75rem; } }
  .nutrition-table.mobile-table {
    min-width: 100%;
    font-size: 0.85rem;
    border: 1px solid #f5f5f5;
    border-radius: 8px;
    overflow: hidden; }
    @media (max-width: 480px) {
      .nutrition-table.mobile-table {
        font-size: 0.8rem; } }
    .nutrition-table.mobile-table .date-col-mobile {
      width: 25%;
      background-color: #003c73;
      color: #fff; }
    .nutrition-table.mobile-table .meal-col {
      width: 25%;
      background-color: #0056a6;
      color: #fff;
      text-align: center;
      font-size: 0.8rem; }
      @media (max-width: 480px) {
        .nutrition-table.mobile-table .meal-col {
          font-size: 0.75rem; } }
  .nutrition-table th,
  .nutrition-table td {
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #f5f5f5; }
    @media (max-width: 992px) {
      .nutrition-table th,
      .nutrition-table td {
        padding: 10px 6px; } }
    @media (max-width: 768px) {
      .nutrition-table th,
      .nutrition-table td {
        padding: 8px 4px; } }
    @media (max-width: 480px) {
      .nutrition-table th,
      .nutrition-table td {
        padding: 6px 2px; } }
  .nutrition-table thead th {
    background-color: #0056a6;
    color: #fff;
    font-weight: 500;
    vertical-align: middle; }
    .nutrition-table thead th.date-col {
      background-color: #003c73; }
    .nutrition-table thead th.meals-header {
      background-color: #0056a6;
      font-size: 1rem; }
    .nutrition-table thead th.point-header {
      background-color: #0070d9;
      font-weight: 500; }
      @media (max-width: 768px) {
        .nutrition-table thead th.point-header {
          font-size: 0.75rem;
          padding: 8px 2px; } }
      @media (max-width: 480px) {
        .nutrition-table thead th.point-header {
          font-size: 0.7rem;
          padding: 6px 1px; } }
    @media (max-width: 480px) {
      .nutrition-table thead th.meal-type {
        font-size: 0.65rem;
        padding: 4px 1px; } }
  .nutrition-table thead .meals-subheader th {
    background-color: #007ef3;
    font-weight: 500;
    font-size: 0.85rem; }
    .nutrition-table thead .meals-subheader th:first-child {
      background-color: #0063c0; }
  .nutrition-table tbody tr {
    transition: all 0.3s ease; }
    .nutrition-table tbody tr:nth-child(even) {
      background-color: rgba(245, 245, 245, 0.3); }
    .nutrition-table tbody tr:hover {
      background-color: rgba(0, 86, 166, 0.05); }
    .nutrition-table tbody tr.holiday-row {
      background-color: rgba(0, 0, 0, 0.05) !important;
      pointer-events: none;
      opacity: 0.7; }
      .nutrition-table tbody tr.holiday-row td {
        background-color: transparent !important; }
  .nutrition-table tbody td.date-cell {
    font-weight: 500;
    background-color: rgba(0, 86, 166, 0.05);
    white-space: nowrap; }
    .nutrition-table tbody td.date-cell .weekday {
      display: block;
      font-size: 0.8rem;
      color: #666;
      margin-bottom: 3px; }
    .nutrition-table tbody td.date-cell .date {
      display: block;
      font-weight: 600; }
  .nutrition-table tbody td.meal-cell {
    position: relative;
    min-width: 60px;
    text-align: center;
    padding: 8px 5px; }
    .nutrition-table tbody td.meal-cell input[type="radio"] {
      width: 24px;
      height: 24px;
      margin: 0;
      cursor: pointer;
      accent-color: #0056a6;
      transition: all 0.3s ease; }
      @media (max-width: 768px) {
        .nutrition-table tbody td.meal-cell input[type="radio"] {
          width: 20px;
          height: 20px; } }
      @media (max-width: 480px) {
        .nutrition-table tbody td.meal-cell input[type="radio"] {
          width: 18px;
          height: 18px; } }
      .nutrition-table tbody td.meal-cell input[type="radio"]:checked {
        transform: scale(1.2);
        box-shadow: 0 0 0 3px rgba(0, 86, 166, 0.3); }
        @media (max-width: 480px) {
          .nutrition-table tbody td.meal-cell input[type="radio"]:checked {
            transform: scale(1.1);
            box-shadow: 0 0 0 2px rgba(0, 86, 166, 0.3); } }
      .nutrition-table tbody td.meal-cell input[type="radio"]:focus {
        outline: 2px solid #0056a6;
        outline-offset: 2px; }
        @media (max-width: 480px) {
          .nutrition-table tbody td.meal-cell input[type="radio"]:focus {
            outline-width: 1px;
            outline-offset: 1px; } }
      .nutrition-table tbody td.meal-cell input[type="radio"]:hover {
        transform: scale(1.1); }
        @media (max-width: 480px) {
          .nutrition-table tbody td.meal-cell input[type="radio"]:hover {
            transform: scale(1.05); } }

.validation-section {
  background-color: rgba(255, 204, 0, 0.1);
  border-left: 4px solid #ffcc00;
  padding: 20px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 30px; }
  @media (max-width: 768px) {
    .validation-section {
      padding: 15px;
      margin-bottom: 25px; } }
  .validation-section .validation-question {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px; }
    @media (max-width: 768px) {
      .validation-section .validation-question {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px; } }
    @media (max-width: 480px) {
      .validation-section .validation-question {
        font-size: 1rem;
        gap: 6px; } }
  .validation-section .validation-note {
    font-size: 0.9rem;
    color: #666;
    margin: 0; }

.form-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; }
  .form-actions .btn {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px; }
    .form-actions .btn i {
      font-size: 0.9rem; }
    .form-actions .btn.btn-primary {
      background-color: #0056a6;
      color: #fff; }
      .form-actions .btn.btn-primary:hover {
        background-color: #003c73;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); }
      .form-actions .btn.btn-primary:active {
        transform: translateY(0); }
    .form-actions .btn.btn-secondary {
      background-color: #ddd;
      color: #666; }
      .form-actions .btn.btn-secondary:hover {
        background-color: #c4c4c4;
        transform: translateY(-2px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
      .form-actions .btn.btn-secondary:active {
        transform: translateY(0); }
    .form-actions .btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none !important; }

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px; }
  .modal-overlay.active {
    display: flex; }

.modal-content {
  background-color: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: modalFadeIn 0.3s ease; }
  @media (max-width: 768px) {
    .modal-content {
      max-width: 90vw;
      margin: 0 auto; } }
  @media (max-width: 480px) {
    .modal-content {
      max-width: 95vw;
      max-height: 90vh;
      overflow-y: auto; } }
  @media (max-width: 480px) {
    .modal-content.qr-modal {
      max-width: 98vw; } }

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.modal-header {
  background-color: #0056a6;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media (max-width: 768px) {
    .modal-header {
      padding: 15px; } }
  @media (max-width: 480px) {
    .modal-header {
      padding: 12px; } }
  .modal-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem; }
    @media (max-width: 768px) {
      .modal-header h3 {
        font-size: 1.1rem;
        gap: 8px; } }
    @media (max-width: 480px) {
      .modal-header h3 {
        font-size: 1rem;
        gap: 6px; } }
    .modal-header h3 i {
      color: #28a745; }
      @media (max-width: 480px) {
        .modal-header h3 i {
          font-size: 0.9rem; } }
  .modal-header .modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; }
    @media (max-width: 480px) {
      .modal-header .modal-close {
        font-size: 1.5rem;
        width: 25px;
        height: 25px; } }
    .modal-header .modal-close:hover {
      transform: scale(1.2); }
      @media (max-width: 480px) {
        .modal-header .modal-close:hover {
          transform: scale(1.1); } }

.modal-body {
  padding: 25px;
  font-size: 0.8rem; }
  @media (max-width: 768px) {
    .modal-body {
      padding: 20px; } }
  @media (max-width: 480px) {
    .modal-body {
      padding: 15px; } }
  .modal-body p {
    margin-bottom: 20px;
    font-size: 1.1rem; }
    @media (max-width: 768px) {
      .modal-body p {
        font-size: 1rem;
        margin-bottom: 15px; } }
    @media (max-width: 480px) {
      .modal-body p {
        font-size: 0.9rem;
        margin-bottom: 12px; } }
  .modal-body.qr-modal-body {
    text-align: center; }
    .modal-body.qr-modal-body .qr-canvas-container {
      margin-bottom: 15px; }
      .modal-body.qr-modal-body .qr-canvas-container canvas {
        border: 1px solid #ddd;
        border-radius: 8px;
        max-width: 100%;
        height: auto; }
        @media (max-width: 480px) {
          .modal-body.qr-modal-body .qr-canvas-container canvas {
            max-width: 200px;
            max-height: 200px; } }
    .modal-body.qr-modal-body .qr-description {
      margin-top: 15px;
      font-size: 14px;
      color: #666; }
      @media (max-width: 480px) {
        .modal-body.qr-modal-body .qr-description {
          font-size: 12px;
          margin-top: 10px; } }
  .modal-body .summary-info {
    background-color: rgba(0, 86, 166, 0.05);
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #0056a6; }
    .modal-body .summary-info h4 {
      margin-top: 0;
      margin-bottom: 10px;
      color: #0056a6; }
    .modal-body .summary-info ul {
      margin: 0;
      padding-left: 20px; }
      .modal-body .summary-info ul li {
        margin-bottom: 5px; }
        .modal-body .summary-info ul li:last-child {
          margin-bottom: 0; }

.modal-footer {
  padding: 20px;
  background-color: #f5f5f5;
  text-align: right; }
  .modal-footer .btn {
    min-width: 100px; }
    @media (max-width: 480px) {
      .modal-footer .btn {
        min-width: auto;
        flex: 1;
        margin: 0 2px; } }
  @media (max-width: 480px) {
    .modal-footer {
      display: flex;
      gap: 5px; } }

@media (max-width: 480px) {
  .content-wrapper {
    padding: 10px; }

  .form-actions {
    flex-direction: column;
    gap: 10px; }
    .form-actions .btn {
      width: 100%;
      justify-content: center;
      padding: 10px 20px;
      font-size: 0.9rem; }
      .form-actions .btn i {
        margin-right: 5px; } }
    @media (max-width: 480px) and (max-width: 360px) {
      .form-actions .btn span {
        display: none; } }
    @media (max-width: 480px) and (max-width: 360px) {
      .form-actions .btn.btn-primary::after {
        content: "Отправить"; } }
    @media (max-width: 480px) and (max-width: 360px) {
      .form-actions .btn.btn-secondary::after {
        content: "Сброс"; } }

@media (max-width: 480px) {
  .modal-overlay {
    padding: 5px; }

  .modal-footer {
    padding: 15px; }
    .modal-footer .btn {
      min-width: auto;
      flex: 1;
      margin: 0 5px;
      font-size: 0.85rem;
      padding: 8px 12px; } }
    @media (max-width: 480px) and (max-width: 360px) {
      .modal-footer .btn span {
        display: none; } }

@media (max-width: 480px) {
  #qrCodeContainer {
    margin: 15px 0 !important; }
    #qrCodeContainer canvas {
      max-width: 200px !important;
      max-height: 200px !important; }
    #qrCodeContainer h3 {
      font-size: 1.1rem;
      margin-bottom: 10px; } }
input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05); }

input:valid:not(:focus):not(:placeholder-shown) {
  border-color: #28a745;
  background-color: rgba(40, 167, 69, 0.05); }

.is-invalid,
.is-invalid:not(:focus),
.is-invalid:valid {
  border-color: #dc3545 !important;
  background-color: rgba(220, 53, 69, 0.05) !important; }

.is-valid,
.is-valid:not(:focus) {
  border-color: #28a745 !important;
  background-color: rgba(40, 167, 69, 0.05) !important; }

.snils-loader {
  font-size: 0.8rem;
  color: #0056a6;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 8px; }

.snils-success {
  font-size: 0.8rem;
  color: #28a745;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 8px; }

@media (max-width: 480px) {
  .table-responsive {
    border-radius: 0;
    margin: 0 -15px 25px -15px;
    border-left: none;
    border-right: none; }

  .nutrition-form-section {
    border-radius: 0;
    margin: 0 -10px; }

  .mobile-table {
    font-size: 12px !important; }
    .mobile-table .meal-cell .radio-group input[type="radio"] {
      width: 18px !important;
      height: 18px !important; }

  .mobile-canteen-selector .canteen-btn {
    font-size: 11px !important;
    padding: 8px 6px !important; } }
.loading {
  position: relative; }
  .loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ddd;
    border-top-color: #0056a6;
    border-radius: 50%;
    animation: spin 1s linear infinite; }

@keyframes spin {
  to {
    transform: rotate(360deg); } }
@media (max-width: 768px) {
  .desktop-table {
    display: none !important; }

  .mobile-table-wrapper {
    display: block; }
    .mobile-table-wrapper .mobile-canteen-selector {
      display: flex;
      gap: 8px;
      margin-bottom: 15px;
      padding: 0 10px; }
      .mobile-table-wrapper .mobile-canteen-selector .canteen-btn {
        flex: 1;
        padding: 10px 8px;
        border: 2px solid #dee2e6;
        background: #f8f9fa;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 13px;
        font-weight: 500;
        position: relative; }
        .mobile-table-wrapper .mobile-canteen-selector .canteen-btn .canteen-short {
          display: block; }
        .mobile-table-wrapper .mobile-canteen-selector .canteen-btn .canteen-full {
          display: none; }
        .mobile-table-wrapper .mobile-canteen-selector .canteen-btn:hover {
          border-color: #007bff;
          background: #e9ecef; }
        .mobile-table-wrapper .mobile-canteen-selector .canteen-btn.active {
          border-color: #007bff;
          background: #007bff;
          color: white; }
          .mobile-table-wrapper .mobile-canteen-selector .canteen-btn.active:hover {
            background: #0056b3;
            border-color: #0056b3; }
          .mobile-table-wrapper .mobile-canteen-selector .canteen-btn.active::after {
            content: '✓';
            position: absolute;
            top: -5px;
            right: -5px;
            background: #28a745;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: bold; } }
      @media (max-width: 768px) and (min-width: 480px) {
        .mobile-table-wrapper .mobile-canteen-selector .canteen-btn .canteen-short {
          display: none; }
        .mobile-table-wrapper .mobile-canteen-selector .canteen-btn .canteen-full {
          display: block; } }
@media (max-width: 768px) {
    .mobile-table-wrapper .mobile-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
      .mobile-table-wrapper .mobile-table th,
      .mobile-table-wrapper .mobile-table td {
        border: 1px solid #dee2e6;
        text-align: center;
        vertical-align: middle; }
      .mobile-table-wrapper .mobile-table thead th {
        background: #f8f9fa;
        font-weight: 600;
        color: #495057;
        padding: 12px 8px;
        font-size: 13px; }
        .mobile-table-wrapper .mobile-table thead th.date-col-mobile {
          background: #0056a6;
          color: white;
          min-width: 80px; }
        .mobile-table-wrapper .mobile-table thead th.meal-col {
          background: linear-gradient(135deg, #0056a6, #0070d9);
          color: white;
          min-width: 60px; }
      .mobile-table-wrapper .mobile-table tbody .date-cell {
        font-size: 12px;
        padding: 8px;
        min-width: 80px;
        background: #f8f9fa; }
        .mobile-table-wrapper .mobile-table tbody .date-cell .weekday {
          display: block;
          font-weight: 600;
          color: #007bff;
          margin-bottom: 2px; }
        .mobile-table-wrapper .mobile-table tbody .date-cell .date {
          display: block;
          color: #6c757d;
          font-size: 11px; }
      .mobile-table-wrapper .mobile-table tbody .meal-cell {
        padding: 8px 4px;
        text-align: center;
        vertical-align: middle;
        font-size: 12px; }
        .mobile-table-wrapper .mobile-table tbody .meal-cell .radio-group {
          display: flex;
          justify-content: center;
          align-items: center; }
          .mobile-table-wrapper .mobile-table tbody .meal-cell .radio-group input[type="radio"] {
            appearance: auto;
            -webkit-appearance: radio;
            -moz-appearance: radio;
            margin: 0 4px 0 0;
            cursor: pointer; }
          .mobile-table-wrapper .mobile-table tbody .meal-cell .radio-group .radio-label {
            display: none; } }
@media (min-width: 769px) {
  .mobile-table-wrapper {
    display: none !important; }

  .desktop-table {
    display: table !important; } }

/*# sourceMappingURL=style.css.map */
