/* Datatable.css */
.column-no-header {
    background-color: #ff0000; /* Contoh warna latar belakang merah */
    color: #ffffff; /* Contoh warna teks putih */
  }
  
  .column-name-header {
    background-color: #00ff00; /* Contoh warna latar belakang hijau */
    color: #000000; /* Contoh warna teks hitam */
  }


  /* // PAGE LOGIN */

  .login-page {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
  }
  
  .section {
    flex: 1;
  }
  
  .section-login {
    background-image: url('gambar-login.jpg'); /* Ganti 'gambar-login.jpg' dengan URL atau path gambar latar belakang yang diinginkan */
    background-size: cover;
    background-position: center;
  }
  
  .login-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  .form-group {
    margin-bottom: 10px;
  }
  
  label {
    font-weight: bold;
  }
  
  input {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  button {
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  