 /* === Background Food Elements === */
    .food-bg-element {
      position: absolute;
      z-index: 0;
      opacity: 0.1;
      font-size: 120px;
      color: #e67e22;
    }
    
    .food-bg-1 { top: 5%; left: 5%; transform: rotate(-15deg); }
    .food-bg-2 { top: 10%; right: 8%; transform: rotate(25deg); }
    .food-bg-3 { bottom: 15%; left: 7%; transform: rotate(10deg); }
    .food-bg-4 { bottom: 5%; right: 10%; transform: rotate(-20deg); }

    /* === Main Container === */
    .container {
        margin: auto;
      width: 100%;
      max-width: 800px;
      background: white;
      border-radius: 25px;
      box-shadow: 0 20px 40px rgba(230, 126, 34, 0.15);
      overflow: hidden;
      position: relative;
      z-index: 1;
      border: 1px solid rgba(255, 165, 0, 0.1);
    }

    /* === Header Section === */
    .header {
      background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
      padding: 35px 20px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .header::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: rgba(255, 255, 255, 0.1);
      transform: rotate(45deg);
    }

    .logo {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      position: relative;
      z-index: 1;
    }

    .logo i {
      font-size: 45px;
      color: #e67e22;
    }

    .brand-title {
      font-family: 'Dancing Script', cursive;
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }

    .brand-subtitle {
      font-size: 16px;
      opacity: 0.9;
      position: relative;
      z-index: 1;
      font-weight: 300;
      letter-spacing: 0.5px;
    }

    /* === Tab Buttons === */
    .tab-buttons {
      display: flex;
      background: #fff9f0;
      border-bottom: 1px solid #ffe8cc;
    }


/* css/dashboard.css */
.card.add-dish form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card.add-dish input[type="number"],
.card.add-dish input[type="text"],
.card.add-dish select,
.card.add-dish textarea,
.card.add-dish input[type="file"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.card.profile #map {
  margin-top: 10px;
  border-radius: 8px;
}
    .tab-button {
      flex: 1;
      padding: 18px;
      text-align: center;
      background: none;
      border: none;
      font-size: 17px;
      font-weight: 600;
      color: #e67e22;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .tab-button.active {
      color: #d35400;
      background: white;
    }

    .tab-button.active::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(to right, #e67e22, #d35400);
    }

    .tab-button i {
      margin-right: 8px;
    }

    /* === Forms Container === */
    .form-container {
      padding: 35px 30px;
    }

    .form {
      display: none;
    }

    .form.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .form-title {
      font-family: 'Dancing Script', cursive;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 25px;
      color: #e67e22;
      text-align: center;
    }

    /* === Input Groups === */
    .input-group {
      margin-bottom: 22px;
      position: relative;
    }

    .input-group label {
      display: block;
      margin-bottom: 8px;
      font-size: 15px;
      font-weight: 500;
      color: #7f8c8d;
    }

    .input-with-icon {
      position: relative;
    }

    .input-with-icon input {
      width: 100%;
      padding: 14px 50px 14px 15px;
      border: 2px solid #ffe8cc;
      border-radius: 12px;
      font-size: 16px;
      transition: all 0.3s ease;
      background: #fffbf5;
    }

    .input-with-icon input:focus {
      border-color: #e67e22;
      box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
      outline: none;
      background: white;
    }

    .input-icon {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #e67e22;
      font-size: 18px;
    }

    /* === OTP Section === */
    .otp-section {
      display: none;
      margin-top: 10px;
      padding: 20px;
      background: #fff9f0;
      border-radius: 12px;
      border-left: 4px solid #e67e22;
    }

    .otp-section.active {
      display: block;
      animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
      from { opacity: 0; max-height: 0; }
      to { opacity: 1; max-height: 200px; }
    }

    .otp-btn {
      background: linear-gradient(to right, #e67e22, #d35400);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;
      box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
    }

    .otp-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(230, 126, 34, 0.4);
    }

    /* === File Input === */
    .file-input {
      position: relative;
      overflow: hidden;
      display: inline-block;
      width: 100%;
    }

    .file-input input[type="file"] {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }

    .file-input-label {
      display: block;
      padding: 14px 15px;
      background: #fff9f0;
      border: 2px dashed #ffc078;
      border-radius: 12px;
      text-align: center;
      font-size: 15px;
      color: #e67e22;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .file-input-label:hover {
      background: #ffe8cc;
      border-color: #e67e22;
    }

    .file-input-label i {
      margin-right: 8px;
    }

    /* === Submit Button === */
    .submit-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(to right, #e67e22, #d35400);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 17px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;
      box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
      position: relative;
      overflow: hidden;
    }

    .submit-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: 0.5s;
    }

    .submit-btn:hover::before {
      left: 100%;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
    }

    /* === Form Footer === */
    .form-footer {
      text-align: center;
      margin-top: 25px;
      font-size: 15px;
      color: #7f8c8d;
    }

    .form-footer a {
      color: #e67e22;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border-bottom: 1px dotted #e67e22;
    }

    .form-footer a:hover {
      color: #d35400;
      border-bottom: 1px solid #d35400;
    }

    /* === Messages === */
    .message {
      padding: 12px 15px;
      border-radius: 10px;
      margin-bottom: 20px;
      font-size: 14px;
      border-left: 4px solid;
    }

    .error-message {
      background: #ffebee;
      color: #c62828;
      border-left-color: #c62828;
    }

    .success-message {
      background: #e8f5e9;
      color: #2e7d32;
      border-left-color: #2e7d32;
    }

    .info-message {
      background: #e3f2fd;
      color: #1565c0;
      border-left-color: #1565c0;
      font-size: 13px;
      margin-top: 8px;
    }

    /* === Password Validation === */
    .password-validation {
      display: flex;
      align-items: center;
      margin-top: 5px;
      font-size: 13px;
    }

    .validation-icon {
      margin-right: 5px;
      font-size: 12px;
    }

    .valid {
      color: #2e7d32;
    }

    .invalid {
      color: #c62828;
    }

    /* === Responsive Design === */
    @media (max-width: 480px) {
      .container {
        max-width: 100%;
        border-radius: 20px;
      }
      
      .form-container {
        padding: 25px 20px;
      }
      
      .header {
        padding: 25px 15px;
      }
      
      .brand-title {
        font-size: 36px;
      }
      
      .tab-button {
        padding: 15px;
        font-size: 15px;
      }
      
      .food-bg-element {
        font-size: 80px;
      }
    }
  .order-item {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 15px;
        background: white;
    }

    .order-header {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .order-header img {
        border-radius: 50%;
        margin-right: 10px;
    }

    .order-info {
        display: flex;
        flex-direction: column;
    }

    .order-info strong {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .order-info span {
        font-size: 14px;
        color: #666;
        margin-bottom: 2px;
    }

    .order-details {
        margin: 10px 0;
        padding: 10px;
        background: #f9f9f9;
        border-radius: 5px;
    }

    .order-details p {
        margin: 5px 0;
        font-size: 14px;
    }

    .order-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .accept-btn {
        background: #28a745;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
    }

    .reject-btn {
        background: #dc3545;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
    }

    .complete-btn {
        background: #007bff;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
    }

    .completed-badge {
        background: #28a745;
        color: white;
        padding: 8px 15px;
        border-radius: 5px;
        font-size: 14px;
        display: inline-block;
    }

    .rejected-badge {
        background: #dc3545;
        color: white;
        padding: 8px 15px;
        border-radius: 5px;
        font-size: 14px;
        display: inline-block;
    }

    .pending-badge {
        background: #ffc107;
        color: black;
        padding: 8px 15px;
        border-radius: 5px;
        font-size: 14px;
        display: inline-block;
    }

    .assigned-badge {
        background: #17a2b8;
        color: white;
        padding: 8px 15px;
        border-radius: 5px;
        font-size: 14px;
        display: inline-block;
    }

    .accept-btn:hover {
        background: #218838;
    }

    .reject-btn:hover {
        background: #c82333;
    }

    .complete-btn:hover {
        background: #0056b3;
    }

    .status-badge {
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: bold;
        margin-left: 10px;
    }

    .status-new {
        background: #007bff;
        color: white;
    }

    .status-pending {
        background: #ffc107;
        color: black;
    }

    .status-assigned {
        background: #17a2b8;
        color: white;
    }

    .status-completed {
        background: #28a745;
        color: white;
    }

    .status-rejected {
        background: #dc3545;
        color: white;
    }