    /* .main-content {
      grid-template-columns: 1fr 400px;
      gap: 30px;
      padding: 40px;
    } */

    .booking-form {
      background: transparent;
      padding: 30px;
      border-radius: 10px;
      border: 0;
    }

    .form-group {
      margin-bottom: 20px;
    }

    label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #333;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 12px;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      font-size: 16px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .btn-primary {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      width: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    }

    .sidebar {
      background: #f8f9fa;
      padding: 30px;
      border-radius: 10px;
      border: 1px solid #e9ecef;
    }

    .service-card {
      background: white;
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 10px;
      border-left: 4px solid #667eea;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card h3 {
      color: #667eea;
      margin-bottom: 10px;
    }

    .bookings-list {
      margin-top: 30px;
    }

    .booking-item {
      background: white;
      padding: 15px;
      margin-bottom: 15px;
      border-radius: 8px;
      border-left: 4px solid #28a745;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .booking-item h4 {
      color: #333;
      margin-bottom: 8px;
    }

    .booking-item p {
      color: #666;
      margin-bottom: 5px;
    }

    .delete-btn {
      background: #dc3545;
      color: white;
      border: none;
      padding: 5px 15px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 12px;
      margin-top: 10px;
    }

    .delete-btn:hover {
      background: #c82333;
    }

    .time-slots {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 10px;
    }

    .time-slot {
      padding: 10px;
      border: 2px solid #e9ecef;
      border-radius: 5px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s;
    }

    .time-slot:hover {
      border-color: #667eea;
      background: #f8f9ff;
    }

    .time-slot.selected {
      background: #667eea;
      color: white;
      border-color: #667eea;
    }

    .contact-info {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 20px;
      border-radius: 10px;
      margin-top: 20px;
    }

    .contact-info h3 {
      margin-bottom: 15px;
    }

    .contact-info p {
      margin-bottom: 8px;
    }

    @media (max-width: 768px) {
      .main-content {
        grid-template-columns: 1fr;
      }

      .header h1 {
        font-size: 2em;
      }

      .time-slots {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .success-message {
      background: #d4edda;
      color: #155724;
      padding: 15px;
      border-radius: 8px;
      margin-bottom: 20px;
      border: 1px solid #c3e6cb;
      display: none;
    }

    .error-message {
      background: #f8d7da;
      color: #721c24;
      padding: 15px;
      border-radius: 8px;
      margin-bottom: 20px;
      border: 1px solid #f5c6cb;
      display: none;
    }

    .modal-content {
      background-color: #f8f9fa !important;
    }