body {
  background: linear-gradient(135deg, #0e1224, #101426);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

.admin-header {
  background: #0e1224;
  padding: 15px 25px;
  box-shadow: 0 0 12px rgba(0, 255, 247, 0.1);
  border-bottom: 1px solid #00fff7;
  position: sticky;
  top: 0;
  z-index: 999;
}

.admin-header .logo span {
  color: #00fff7;
  font-weight: bold;
  font-size: 20px;
}

.admin-nav a {
  color: #00fff7;
  margin-right: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.admin-nav a:hover {
  text-shadow: 0 0 6px #00fff7;
}

.btn-site,
.btn-logout {
  background: transparent;
  border: 1px solid #00fff7;
  color: #00fff7;
  font-weight: 500;
  border-radius: 8px;
  padding: 6px 15px;
  transition: 0.3s;
}

.btn-site:hover,
.btn-logout:hover {
  background: #00fff7;
  color: #000;
  box-shadow: 0 0 8px #00fff7;
}

/* Mobil Menü Gizli */
@media (max-width: 768px) {
  .admin-nav {
    display: none !important;
  }

  .admin-header .logo span {
    font-size: 16px;
  }

  .btn-site,
  .btn-logout {
    padding: 5px 10px;
    font-size: 14px;
  }
}

/* Mobil Menü Toggle Buton */
.menu-toggle {
  background: transparent;
  border: none;
  color: #00fff7;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
}

.menu-toggle:focus {
  outline: none;
}

/* Mobil Menü */
.mobile-menu {
  background: #0e1224;
  position: fixed;
  top: 60px;
  right: -260px;
  width: 250px;
  height: 100%;
  padding: 30px 20px;
  box-shadow: -2px 0 10px rgba(0, 255, 247, 0.1);
  transition: 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu a {
  color: #00fff7;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: 0.2s;
}

.mobile-menu a:hover {
  text-shadow: 0 0 8px #00fff7;
}

.mobile-menu.open {
  right: 0;
}

/* Küçük ekranlar için düzen */
@media (max-width: 768px) {
  .admin-header {
    flex-wrap: wrap;
  }
}


/* Yönetim Paneli */
.admin-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.admin-title {
  text-align: center;
  color: #00fff7;
  margin-bottom: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid #00fff7;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0,255,247,0.05);
}

.stat-box:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0,255,247,0.2);
}

.stat-icon {
  font-size: 30px;
  margin-bottom: 10px;
  color: #00fff7;
}

.stat-text {
  font-size: 14px;
  color: #ccc;
}

.stat-value {
  font-size: 24px;
  font-weight: bold;
  color: #00fff7;
  margin-top: 5px;
}

/* Tablo */
.table-dark {
  background-color: #121524;
  border-radius: 10px;
  overflow: hidden;
}

.table-dark th {
  color: #00fff7;
  border-color: #00fff7;
}

.table-dark td {
  color: #fff;
  border-color: rgba(0,255,247,0.1);
}

.text-neon {
  color: #00fff7;
  font-weight: 600;
}

.btn-custom {
  background-color: #00fff7;
  color: #000;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #00e0d0;
  color: #000;
}


.disk-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #00fff7;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 255, 247, 0.1);
}

.disk-box .progress {
  background-color: #1fe74a;
  border-radius: 10px;
  overflow: hidden;
}

.disk-box .progress-bar {
  background-color: #ed3737;
  font-weight: bold;
  color: #000;
  text-align: center;
  transition: width 0.6s ease;
}

.beyaz{
    color:white !important;
}


.modal-dialog {
  max-width: 500px;
  width: 100%;
  margin: 1.75rem auto;
  z-index: 1050;
}

.modal-content {
  background-color: #0e1224;
  color: #fff;
  border: 1px solid #00fff7;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,255,247,0.2);
}

.modal-body {
  max-height: 400px;
  overflow-y: auto;
  white-space: normal;
  word-wrap: break-word;
}

.modal-header,
.modal-footer {
  border-color: rgba(0,255,247,0.1);
}

.modal input.form-control,
.modal .form-check-input {
  background-color: #1a1e2a;
  color: #fff;
  border: 1px solid #00fff7;
  border-radius: 6px;
}

.modal input.form-control:focus {
  border-color: #00fff7;
  box-shadow: 0 0 5px #00fff7;
}



.btn-cron {
  background-color: #00fff7;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  box-shadow: 0 0 10px rgba(0,255,247,0.3);
  transition: 0.3s;
}

.btn-cron:hover {
  background-color: #00e0d0;
  box-shadow: 0 0 15px rgba(0,255,247,0.5);
}

/* Giriş Kutusu */
.login-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid #00fff7;
  max-width: 450px;
  margin: 100px auto;
  box-shadow: 0 0 20px rgba(0, 255, 247, 0.15);
  text-align: center;
}

/* Başlık */
.login-box h1 {
  color: #00fff7;
  margin-bottom: 30px;
}

/* Etiketler */
.form-label {
  font-weight: 500;
  margin-bottom: 5px;
  color: #fff;
  text-align: left;
}

/* Inputlar */
.form-control {
  background: #1a1e2a;
  color: #fff;
  border: 1px solid #00fff7;
  border-radius: 8px;
  padding: 10px;
}

.form-control:focus {
  border-color: #00fff7;
  box-shadow: 0 0 5px #00fff7;
}

/* Buton */
.btn-custom {
  background: #00fff7;
  color: #000;
  border: none;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #00e0d0;
  color: #000;
  box-shadow: 0 0 10px rgba(0, 255, 247, 0.4);
}

/* Uyarı Kutusu */
.alert-glow {
  background-color: #101426;
  border-left: 5px solid #ff3b3b;
  padding: 10px 15px;
  color: #ff3b3b;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 59, 59, 0.2);
  margin-bottom: 20px;
  border-radius: 5px;
}
