/* Temel stil ayarları */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f9;
    color: #333;
  }
  
  .admin-header {
    background-color: #1f2d3d;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .admin-nav-left h1 {
    margin: 0;
    font-size: 1.5rem;
  }
  
  .admin-nav {
    margin-top: 10px;
    display: flex;
    gap: 15px;
  }
  
  .admin-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .admin-nav a:hover {
    color: #00bcd4;
  }
  
  .admin-nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }
  
  .logout-btn {
    background-color: #e74c3c;
    padding: 6px 12px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
  }
  
  .logout-btn:hover {
    background-color: #c0392b;
  }
  
  /* Formlar */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  input[type="text"],
  input[type="number"],
  input[type="password"],
  input[type="email"],
  select,
  textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  button, .btn {
    background-color: #2980b9;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
  }
  
  button:hover, .btn:hover {
    background-color: #2471a3;
  }
  
  /* Tablo */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eee;
  }
  
  th {
    background-color: #ecf0f1;
    font-weight: 600;
  }
  
  .status {
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  
  .status.active {
    background-color: #2ecc71;
    color: white;
  }
  
  .status.inactive {
    background-color: #e74c3c;
    color: white;
  }
  
  /* Uyarı Kutuları */
  .alert {
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  
  .alert-success {
    background-color: #d4edda;
    color: #155724;
  }
  
  .alert-error {
    background-color: #f8d7da;
    color: #721c24;
  }

  .dashboard-help-container {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .intro {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .intro p {
    font-size: 1.1rem;
    color: #555;
  }
  
  .guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .guide-card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  }
  
  .guide-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
  }
  
  .guide-card p {
    font-size: 0.95rem;
    color: #666;
  }