body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
  }

  .meat-heading {
    font-size: 30px;
    margin-bottom: 30px !important;
  }
  .tabs {
    display: flex;
    justify-content: center;
    background: #ddd;
    padding: 20px;
  }


  .tab {
    padding: 10px 20px;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
    transition: background 0.3s, color 0.3s;
    font-weight: bold;
  }
  .tab.active {
    background: #28a745;
    color: #fff;
  }

  .container {
    max-width: 800px;
    margin: 20px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  label {
    margin-bottom: 10px;
    display: block;
    font-size: 18px;
  }

  input[type="number"], input[type="checkbox"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }

  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
  }

  button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    margin: 20px 0;
  }

  button:hover {
    background-color: #218838;
  }

  .hidden {
    display: none;
  }

  .result {
    display: none;
    margin-top: 20px;
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
  }

  .warning {
    color: red;
    font-weight: bold;
  }

  @media (max-width: 600px) {
    .container {
      padding: 20px;
    }
  }

/* Tbale style */
  .result-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
  }
  
  .result-table th, .result-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
  }
  
  .result-table th {
    background-color: #28a745;
    color: white;
  }
  
  .result-table tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  