/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Global reset ve temel font ayarları */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Arka plan ayarı */
body {
  min-height: 100vh;
  background: linear-gradient(#F1FAFF, #CBE4FF);
  margin: 0;
}

/* Üst Menü (Header) - tam ekran */
.header {
  width: 100%;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
}
.header nav a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
  font-weight: 500;
}
.header nav a:hover {
  text-decoration: underline;
}

/* Sayfa Başlığı */
.page-title {
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: #fff;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

/* Ana içerik kutusu: .main – tam ekran genişliği */
.main {
  background-color: #fff;
  /* Kenar yuvarlatmalarını kapatabilirsiniz veya isterseniz ayarlayabilirsiniz */
  border-radius: 0;
  box-shadow: none;
  padding: 20px;
  
  width: 100%;
  max-width: 100%;
  
  margin: 0;
  text-align: left;
  transition: transform 0.2s;
}

/* Başlıklar */
h1 {
  color: #0091ff;
  margin-bottom: 20px;
}

/* Form Elemanları */
label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #555;
  font-weight: bold;
}
input[type="text"],
input[type="number"],
input[type="password"] {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Buton */
button {
  padding: 15px;
  border-radius: 5px;
  margin-top: 15px;
  margin-bottom: 15px;
  border: none;
  color: white;
  cursor: pointer;
  background-color: #0021fb;
  width: 100%;
  font-size: 16px;
}
button:hover {
  background-color: #0015c9;
}

/* Tablo Konteyneri */
.table-container {
  padding: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
table thead {
  background-color: #e9ecef;
}
table th,
table td {
  border: 1px solid #dee2e6;
  padding: 10px;
  text-align: left;
}
table th {
  font-weight: 600;
}

/* Tablo Butonları */
.table-actions {
  display: flex;
  gap: 5px;
}
.table-actions a {
  text-decoration: none;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
}
/* .edit-btn { background-color: #007bff; } */
/* .delete-btn { background-color: #dc3545; } */ 
/* .list-btn { background-color: #17a2b8; } */
.table-actions a:hover { opacity: 0.8; }

/* Responsive (küçük ekranlar) */
@media (max-width: 768px) {
  .header nav a { margin-right: 10px; font-size: 0.9rem; }
  button, input { font-size: 14px; }
}
