body {
  font-family: "Roboto", sans-serif;
  background-color: #fff; }

p {
  color: #b3b3b3;
  font-weight: 300; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto", sans-serif; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a:hover {
    text-decoration: none !important; }

.content {
  padding: 7rem 0; }

h2 {
  font-size: 20px; }

.half, .half .container > .row {
  height: 100vh;
  min-height: 700px; }

@media (max-width: 991.98px) {
  .half .bg {
    height: 200px; } }

.half .contents {
  background: #f6f7fc; }

.half .contents, .half .bg {
  width: 50%; }
  @media (max-width: 1199.98px) {
    .half .contents, .half .bg {
      width: 100%; } }
  .half .contents .form-control, .half .bg .form-control {
    border: none;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    height: 54px;
    background: #fff; }
    .half .contents .form-control:active, .half .contents .form-control:focus, .half .bg .form-control:active, .half .bg .form-control:focus {
      outline: none;
      -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); }

.half .bg {
  background-size: cover;
  background-position: center; }

.half a {
  color: #888;
  text-decoration: underline; }

.half .btn {
  height: 54px;
  padding-left: 30px;
  padding-right: 30px; }

.half .forgot-pass {
  position: relative;
  top: 2px;
  font-size: 14px; }

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px; }
  .control .caption {
    position: relative;
    top: .2rem;
    color: #888; }

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 4px; }

.control--radio .control__indicator {
  border-radius: 50%; }

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc; }

.control input:checked ~ .control__indicator {
  background: #006CFF; }

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #006CFF; }

.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.9;
  pointer-events: none; }

.control__indicator:after {
  font-family: 'icomoon';
  content: '\e5ca';
  position: absolute;
  display: none;
  font-size: 16px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }

.control input:checked ~ .control__indicator:after {
  display: block;
  color: #fff; }

.control--checkbox .control__indicator:after {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b; }

.control--checkbox input:disabled:checked ~ .control__indicator {
  background-color: #7e0cf5;
  opacity: .2; }

.language-select {
    position: absolute;
    width: 200px;
    margin: 10px;
}

.inline-language-select {
    position: relative;
    width: 250px;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.flag-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}

.inline-flag-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}

.custom-select {
    padding-left: 40px;
    border-radius: 30px;
}

.notification {
    position: absolute;
    width: fit-content;
    top: 0;
    margin-top: 55px;
    margin-left: 10px;
    margin-right: 10px;
    z-index: 999999999999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.navbar-brand {
    flex: 0 0 auto; /* Tidak memperluas ukuran */
    margin-right: auto; /* Menggeser elemen ke ujung kiri */
}

.dropdown-custom {
    position: relative;
    display: inline-block;
    margin-right: 20px; /* Margin untuk memisahkan elemen dengan elemen lainnya */
    flex: 0 0 auto; /* Tidak memperluas ukuran */
    margin-left: auto; /* Menggeser elemen ke ujung kanan */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: -2px; /* Atur posisi dropdown ke bawah */
    border: 1px solid #ddd; /* Tambahkan border untuk pemisah */
    left: auto; /* Reset left agar tidak diatur oleh nilai default */
    right: 0; /* Letakkan dropdown content di ujung kanan */
}

.dropdown-custom:hover .dropdown-content {
    display: block;
}

.dropdown-content::after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 8px 8px 0;
    border-color: #f9f9f9 transparent transparent transparent;
    top: -8px;
    right: 16px;
}

/* Style untuk menu dalam dropdown */
.dropdown-content a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: black;
}

  /* Style untuk garis pemisah */
.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.parent-dashboard {
    width: 95%;
    margin: auto;
    padding: 20px;
}

/* Style the flex container for info */
.info-container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px; /* Add space between info and graph */
}

/* Style individual info items */
.info-container > div {
    flex: 1; /* Each info item takes equal space */
    min-width: 100px; /* Set a minimum width for each info item */
    padding: 15px;
    border: 1px solid #ddd;
}

/* Style the flex container for graphs */
.graph-container {
    display: flex;
    flex-wrap: wrap; /* Wrap items to the next line if there is not enough space */
    gap: 20px; /* Add some space between graph elements */
}

/* Style individual graph items */
.graph-container > div {
    flex: 1; /* Each graph takes equal space */
    min-width: 300px; /* Set a minimum width for each graph */
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px; /* Add space between graph and table */
}

/* Style the flex container for tables */
.table-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Style individual table items */
.table-container > div {
    flex: 1;
    min-width: 300px;
    padding: 15px;
    border: 1px solid #ddd;
}

/* Media query for screens below 991px */
@media (max-width: 991px) {
    .info-container,
    .graph-container,
    .table-container {
        flex-direction: column; /* Stack items vertically */
    }
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 98%;
    height: 98%;
    margin: auto;
    border-radius: 10px;
  }

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.card-container {
    padding: 20px 16px;
}

tr:nth-child(odd) {
    background-color: #c8dbff; /* Warna biru muda (sesuaikan sesuai kebutuhan Anda) */
}

tr:nth-child(even) {
    background-color: transparent;
}

.pagination {
    font-size: 14px; /* Sesuaikan dengan ukuran font yang diinginkan */
}
