@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

section#main-dash, section#main-dash h5, section#main-dash h6, section#main-dash p, section#main-dash span, section#main-dash div, section#main-dash a,
label, input, textarea{
    font-family: "Inter", serif !important;
    font-optical-sizing: auto;
    font-style: normal;
}
section#main-dash{
    background: white;
    min-height: calc(100vh - 60px);
    padding-top: 60px;
}
.bold{
    font-weight: bold;
}
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #efefef;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    z-index: 2;
    visibility: hidden; /* Initially hidden */
    opacity: 1;
    transition: visibility 0s, opacity 0.3s ease;
}
.loading-overlay.active {
  visibility: visible;
  opacity: 1;
}
 
.konten-menu .card{
    border-radius: 10px !important;
    box-shadow: none;
    border: 1px solid #ECF3FF;
    height: 200px !important;
    cursor: pointer;
}
.konten-menu .card-blue{
    background: linear-gradient(180deg, #AAFFFB 0%, #CFE5FF 32.5%, #FFFFFF 65.5%);
}
.konten-menu .card-orange{
    background: linear-gradient(180deg, #C8FFAA 0%, #FFF9CF 32.5%, #FFFFFF 65.5%);
}
.konten-menu .card-purple{
    background: linear-gradient(180deg, #D6AAFF 0%, #FFCFDC 32.5%, #FFFFFF 65.5%);
}

.konten-menu .card .card-header{
    height: 110px;
}

.konten-menu .card .card-header img{
    height: 32px;
}
.konten-menu .card .card-body{
    padding: 10px !important;
    height: 90px;
}

.kartu-list {
    list-style: none; /* Remove default bullet points */
    margin: 0;
    padding: 0;
}
  
.kartu-list .kartu {
    display: flex;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 20px;
}
  
  .kartu img {
    width: 115px; /* Adjust as needed */
    height: 65px;
    margin-right: 16px;
    border-radius: 5px;
  }
  
  .kartu .content {
    flex: 1;
    padding-right: 10px;
  }
  
  .kartu .content p {
    height: 40px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    overflow: hidden;
  }
  
  .kartu .content .timestamp {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
  }
  
  .kartu .actions {
    display: flex;
    gap: 8px;
  }
  
  .kartu .actions .update {
    background-color: #375CB4; /* Blue button */
    color: white;
    border: none;
    border-radius: 100px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
  }
  
  .kartu .actions .update:hover {
    background-color: #375db4d7;
  }
  
  .kartu .actions .delete {
    background-color: #FF0000; /* Red button */
    color: white;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    width: 35px;
  }

  .kartu .actions .delete img {
    height: 15px !important;
    width: 15px !important;
  }
  
  .kartu .actions .delete:hover {
    background-color: #ff0000db;
  }
  