    .admin-section { margin: 40px 0; padding: 25px; background: var(--card-bg); border-radius: 16px; box-shadow: var(--shadow); }
    .admin-list { margin-top: 20px; }
    .admin-item { padding: 15px; background: var(--bg); margin: 10px 0; border-radius: 12px; border: 1px solid var(--border); }
    .btn-primary { background: var(--primary); color: white; padding: 12px 24px; border: none; border-radius: 30px; cursor: pointer; margin: 10px 10px 10px 0; }
    .btn-secondary { background: #666; color: white; padding: 12px 24px; border: none; border-radius: 30px; cursor: pointer; margin: 10px 10px 10px 0; }
  
    .header-center {
  display: flex;
  align-items: center;
   }

.btn-logout {
  background: #fa824c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-logout:hover {
  background: #e5733e;
  transform: translateY(-2px);
}
  
  /* Form Layout Improvements */
  .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .form-row input, .form-row select {
    flex: 1;
  }
  
  /* Location Schedule Styles */
  .schedule-section {
    margin-top: 25px;
    padding: 20px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
  }
  
  .location-schedule-item {
    padding: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
  }
  
  .schedule-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  
  .schedule-item-header h5 {
    margin: 0;
    color: var(--primary);
  }
  
  .working-days-section, .time-slots-section {
    margin: 15px 0;
  }
  
  .days-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  
  .days-checkboxes label {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .time-slots-container {
    margin: 10px 0;
  }
  
  .time-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    padding: 10px;
    background: var(--bg);
    border-radius: 6px;
  }
  
  .btn-add-slot, .btn-remove-slot {
    background: var(--primary);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
  }
  
  .btn-remove-slot {
    background: #dc3545;
  }
  
  .btn-add-slot:hover {
    background: #0a6cad;
  }
  
  .btn-remove-slot:hover {
    background: #c82333;
  }
    
    /* Doctors Table Styles */
    .doctors-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
      background: var(--card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .doctors-table th,
    .doctors-table td {
      padding: 12px 15px;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }
    
    .doctors-table th {
      background: var(--primary);
      color: white;
      font-weight: 600;
    }
    
    .doctors-table tr:hover {
      background: var(--bg);
    }
    
    .doctors-table td {
      max-width: 200px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    
    .doctors-table td:nth-child(7) {
      white-space: normal;
      max-width: 300px;
    }