/* style.css */



/* Tabel */
.table {
    border: 1px solid #c62828; /* Merah gelap border */
}

.table thead th {
    background-color: #c62828; /* Merah gelap untuk header tabel */
    color: #fff; /* Putih untuk teks header */
}

.table tbody tr:hover {
    background-color: #e57373; /* Merah muda saat hover pada baris tabel */
}

.table td {
    vertical-align: middle; /* Menyelaraskan teks di tengah */
}

/* Navbar Gradient Background */
.bg-gradient-primary {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
  }
  
  /* Navbar Brand Styling */
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff !important;
  }
  
  /* Navbar Link Styling */
  .navbar-nav .nav-link {
    color: #f8f9fa !important;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #ffd700 !important; /* Gold color */
    transform: scale(1.1);
  }
  
  /* Active Nav Item Styling */
  .navbar-nav .active .nav-link {
    color: #ffd700 !important;
    font-weight: bold;
    border-bottom: 2px solid #ffd700;
  }
  