.content {
    width: 100%;
    min-height:840px;
    margin: auto;
}
.grafanaPanel {
    padding: 8px;
}
.border{
  width: 100%;
  margin-top: 20px;
  margin-bottom: 15px;
  float: left;
  /*border-bottom: 2px #ccccdc solid;*/
}
.grafanaPanelHalf {
  margin-left: 10px;
  margin-top: 10px;
  width: 49%;
  float: left;
}

/* For screens wider than 768px (tablet and desktop) */
@media (min-width: 768px) {
  .grafanaPanelHalf {
        width: 99%;
  }
  .panel {
      height: 450px;
  }
}
    /* For screens wider than 1024px (large desktop) */
@media (min-width: 1024px) {
  .grafanaPanelHalf {
    width: 49%;
  }
  .panel {
    height: 270px;
  }
}

.footer {
    color: #ccccdc;
    font-family: Inter, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.57143;
    letter-spacing: 0.01071em;
    text-align: center;
    bottom: 0;
    width: 99%;
}
.titleExport{
  width: 100%;
  height: 30px;
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.01071em;
  color: #ccccdc;
  padding: 10px 10px 10px 0px;

}
.boxTanggal{
  float: left;
  width: calc(100% - 110px);
}
.tanggal{
  color: #ccccdc;
  width: 600px;
  float: right;
  text-align: right;
  margin-right: 20px;
}
.buttonExport{
  margin-right: 10px;
  width: 100px;
  float: right;
}
.generate{
    width: 100%;
    padding: 5px;
    font-weight: 500;
    border: none;
    border-radius: 2px;
    color: #fefeff;
    background-color: #3d70d9;
    cursor: pointer;
}
.generate:hover{
  background-color: #5986de;
}
.inputTanggal{
    width: 140px;
    padding: 4px;
    border: 1px solid #4e4f50;
    background-color: #2e3238;
    border-radius: 2px;
    color: #ccccdc;
}
.inputTanggal:focus{
  box-shadow: none;
  outline: none;
}
.grecaptcha-badge {
    transform: scale(0.4);   /* ubah ukuran (0.5 = setengah, 0.7 = 70%) */
    transform-origin: bottom right; /* supaya tetap menempel kanan bawah */
    bottom: 1px !important;  /* geser lebih ke atas */
    right: 0px !important;   /* geser lebih ke kiri */
}
#loading {
  position: fixed;
  inset: 0;
  background: #1e1e1e;
  display: flex;
  flex-direction: column;   /* pastikan vertikal */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 15px;                /* jarak antar elemen */
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #444;
  border-top: 6px solid #5794f2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  font-size: 1.2em;
  color: #9d9d9d;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: Inter, Helvetica, Arial, sans-serif;
}