/* Responsive Tablo Stili */
.responsive-table-container {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-width: 600px; /* Küçük ekranlarda kaydırma için minimum genişlik */
}

.responsive-table th {
  background-color: #2c3e50;
  color: white;
  font-weight: 600;
  text-align: left;
}

.responsive-table th, 
.responsive-table td {
  padding: 12px 15px;
  border: 1px solid #dddddd;
  vertical-align: top;
}

.responsive-table tr {
  border-bottom: 1px solid #dddddd;
}

.responsive-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.responsive-table tr:hover {
  background-color: #f1f1f1;
}

/* Mobil için ekstra ayarlar */
@media screen and (max-width: 768px) {
  .responsive-table th, 
  .responsive-table td {
    padding: 8px 10px;
    font-size: 14px;
  }
  
  .responsive-table-container {
    border: 1px solid #ddd;
  }
}

@media screen and (max-width: 480px) {
  .responsive-table th, 
  .responsive-table td {
    padding: 6px 8px;
    font-size: 13px;
  }
}