html {
    scroll-behavior: smooth;
}

/* Scrollbar styling */
.overflow-auto {
    scrollbar-width: thin; /* Untuk Firefox */
    scrollbar-color: #CA344B transparent; /* Warna scroll handle dan track */
}

.overflow-auto::-webkit-scrollbar {
    width: 8px; /* Lebar scrollbar */
}

.overflow-auto::-webkit-scrollbar-track {
    background: transparent; /* Warna track scrollbar */
    border-radius: 4px; /* Membuat ujung track lebih halus */
}

.overflow-auto::-webkit-scrollbar-thumb {
    background-color: #CA344B; /* Warna handle scrollbar */
    border-radius: 4px; /* Membuat ujung handle lebih halus */
    border: 0.5px solid #f4f4f4; /* Memberikan padding pada handle */
}

.overflow-auto::-webkit-scrollbar-thumb:hover {
    background-color: #CA344B; /* Warna handle saat hover */
}

.login {
    min-height: 100vh;
    background-color: #FDF4F3;
    border-radius: 24px 0px 0px 24px;
}

@media (max-width: 768px) {
    .login {
        border-radius: 0px; /* Set semua sudut menjadi 0px */
    }
}

.bg-color{
    background-color: #7A2136;
}

.bg-image {
    background-image: url('../img/login.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.login-heading {
    color: var(--Primary-950, #4C0F1C);
    font-family: "Playfair Display";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 57.6px */
}

.btn-login {
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    padding: 0.75rem 1rem;
}

.btn-primary{
    border-radius: 12px;
    border:0px !important;
    background: var(--Primary-600, #CA344B) !important;
    display: flex;
    height: 48px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;

    color: #FFF;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

.btn-primary:hover {
    background: var(--Primary-800, #A02D3E); 
}

.btn-primary:active {
    background: var(--Primary-900, #701F2B) !important; 
}

.btn-white{
    border-radius: 12px;
    border: 1px solid var(--Gray-200, #D1D1D1);
    background: var(--Base-White, #FFF);

    /* Shadow/xs */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
 
.font-primary-600{
    color: var(--Primary-600, #CA344B);
    text-align: right;
    text-decoration: none;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

.font-gray-600{
    color: var(--Gray-600, #5D5D5D);
    text-align: center;

    /* Text/Regular/Normal */
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.bg-primary-200{
    background: var(--Primary-200, #F8D3D4);
}

/* Sidebar styling */
.sidebar {
    width: 250px;
    background-color: #7A2136;
    height: 100vh;
    position: fixed;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    color: #fff;
    padding: 20px 20px 20px 0px;
    top: 0;
    left: 0;
    z-index: 1000; /* Pastikan sidebar berada di atas konten */
}

.sidebar-img {
    width: 100%;
    margin-bottom: 20px;
    padding-left: 20px;
}

.sidebar a {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 0;
    margin: 10px 0px;
    color: var(--Primary-100, #FCE7E8);
}

.sidebar-active {
    border-radius: 0px 20px 20px 0px;
    background: rgba(248, 211, 212, 0.17);
}

.sidebar-icon {
    margin-right: 6px;
    margin-left: 20px;
    width: 20px;
}

/* Content styling */
.content {
    margin-left: 250px; /* Berikan margin kiri sebesar lebar sidebar */
    background-color: #FDF4F3;
}

.content-fluid {
    margin: 0px; /* Berikan margin kiri sebesar lebar sidebar */
    background-color: #FCE7E8;
}

/* Navbar styling */
.navbar {
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1001; /* Pastikan navbar berada di atas konten */
}

.navbar .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar .user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.navbar .icon {
    font-size: 20px;
    cursor: pointer;
}

.circle-notif {
    background-color: #F8D3D4; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.count-notif{
    background-color: #CA344B; 
    color:#fff;
    font-size: 11px;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: absolute;
    top:15%;
    margin-left: 13px;
    margin-top: 7px;
    padding: 1px;
}
.avatar{
    border: 1px solid var(--Primary-200, #F8D3D4);
}
.avatar-profile{
    border: 0px solid var(--Primary-200, #F8D3D4);
    width:140px;
    margin: 20px 10px 10px 30px;
}
.title-header{
    color: var(--Primary-950, #4C0F1C);
    font-family: "Playfair Display";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 41.6px */
}

.card{
    border-radius: 12px;
    background: #FFF;
    border:0px;
    box-shadow: 0px 20px 24px -4px rgba(0, 0, 0, 0.05), 0px 8px 8px -4px rgba(0, 0, 0, 0.03);
}

.card-title{
    color: var(--Primary-950, #4C0F1C);

    /* Text/Medium/Medium */
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.card-subtitle{
    color: var(--Gray-400, #888);

    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.card-count{
    color: var(--Gray-950, #171717);
    font-size: 55px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 78px */
}

.card-next-konsultasi{
    border-radius: 24px;
    border: 1px solid var(--Primary-200, #F8D3D4);
    background: var(--Primary-50, #FDF4F3);
}

.card-datetime{
    color: var(--Gray-800, #454545);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    display: flex; 
    align-items: center; 
}
.card-riwayat{
    border-radius: 16px;
    border: 1.5px solid var(--Gray-200, #D1D1D1);
}
.btn-camera{
    border-radius: 10px;
    background: var(--Primary-600, #CA344B);
    font-size: 14px;
    color:#fff;
    display: flex; 
    align-items: center; 
}
.card-title-riwayat{
    overflow: hidden;
    color: #424242;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}
.card-subtitle-riwayat{
    overflow: hidden;
    color: var(--Gray-400, #888);
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.card-keluhan{
    border-radius: 16px;
    border: 1px solid var(--Gray-200, #D1D1D1);
    overflow:hidden;
}

.card-keluhan .card-body{
    background: #F4F7FF;
}

.card-keluhan-title{
    color: var(--Gray-900, #3D3D3D);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    background: #EAEDF6;
}

#calendar {
    height: 100%; /* Menyesuaikan dengan tinggi parent */
    overflow: hidden; /* Mencegah elemen di luar batas */
    position: relative;

    max-width: 100%; /* Pastikan kalender tidak melebihi lebar parent */
    margin: 0 auto; /* Tengahkan kalender jika perlu */
    box-sizing: border-box; /* Memastikan padding termasuk dalam ukuran elemen */
}

.fc-scroller {
    overflow-y: auto !important; /* Menambahkan scroll vertikal */
    max-height: 100%; /* Menjamin scroll hanya pada area yang diperlukan */
}

.fc-daygrid-body {
    max-height: 100%; /* Tambahkan margin untuk header jika diperlukan */
    overflow-y: auto; /* Scroll pada konten day grid */
}

.fc-today-button{
    border-radius: 12px !important;
    background: var(--Primary-600, #CA344B) !important;
    border: none !important;
    color: #FFF;
    font-size: 16px;
}

.fc-prev-button{
    background-color: transparent !important;
    color: #5D5D5D !important;
    border: none !important;
}

.fc-next-button{
    background-color: transparent !important;
    color: #5D5D5D !important;
    border: none !important;
}

.fc-next-button:active{
    background-color: transparent !important;
    color: #5D5D5D !important;
    border: none !important;
}

.fc-dayGridMonth-button, 
.fc-timeGridWeek-button, 
.fc-timeGridDay-button {
    border: none !important;
    background-color: transparent !important;
    color: #5D5D5D !important;
}

.fc-button-active{
    border: none !important;
    margin: 2px !important;
    border-radius: 16px !important;
    background: var(--Primary-100, #FCE7E8) !important;
    color: #CA344B !important;
}

.fc-button-group:has(.fc-dayGridMonth-button){
    border-radius: 16px;
    border: 1px solid var(--Gray-200, #D1D1D1);
    background: #FFF;
}

.fc-toolbar-title{
    color: #5D5D5D !important;
    font-size: 20px !important;
}

.fc .fc-toolbar.fc-header-toolbar{
    margin-bottom: 10px !important;
}

.fc-col-header-cell a{
    text-decoration: none !important;
    font-size: 16px !important;
    color: #8F8F8F !important;
}

.fc .fc-timegrid-slot {
    height: calc(var(--fc-slot-min-height, 20px) * 3); /* Gandakan tinggi slot */
}

.custom-event {
    border-left: 3px solid #B74606;
    background: #FFDF88;
    height: 100%;
    width: 100% !important;
    font-size: 12px;
}

.custom-event-available {
    border-left: 3px solid #00850F;
    background: linear-gradient(0deg, rgba(0, 133, 15, 0.10) 0%, rgba(0, 133, 15, 0.10) 100%), #FFF;
    color: #747474 !important;
    height: 100%;
    width: 100% !important;
    font-size: 12px;
    padding-left: 3px;
    margin: 0;
}

.custom-event .event-title {
    margin: 0 0 0 3px !important;
    font-size: 14px;
    color: #21272A !important;
}

.custom-event .event-time {
    margin: 0 0 0 3px !important;
    color: #21272A !important;
}

.custom-event-offline .event-title {
    margin: 0 0 0 3px !important;
    font-size: 14px;
}

.custom-event-offline .event-time {
    margin: 0 0 0 3px !important;
}

.fc-v-event{
    background: transparent !important;
    border: none !important;
}

.w-action{
    width: 100px;
    text-align: center;
}
  .btn-detail {
    background-color: #FCE7E8;
    color: #CA344B;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    font-weight: bold;
    position: relative;
  }
  .btn-detail:hover {
    background-color: #fccccc;
  }
  .loading-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
  }
  .spinner-border {
    color: #83142d;
  }

  #data-table{
    height:100px;
  }

  .card-container {
    display: flex;
    flex-direction: column;
    height: 100%; /* Pastikan kontainer memiliki tinggi penuh */
}

.card-container .card-video {
    flex: 0 0 60%; /* 60% tinggi untuk card */
    max-height: 60%; /* Opsional: Batasi tinggi maksimal */
    overflow: auto; /* Tambahkan overflow jika konten terlalu besar */
    background: var(--Gray-600, #5D5D5D);
}

.card-container .card-catatan {
    flex: 0 0 50%; /* 50% tinggi untuk card */
    max-height: 50%; /* Opsional: Batasi tinggi maksimal */
    overflow: auto; /* Tambahkan overflow jika konten terlalu besar */
}

.card-container .flex-grow-1 {
    flex: 1; /* Gunakan sisa tinggi (40%) */
}

.header-chat{
    border-bottom: 1px solid #DBDBDB;
    background: var(--Gray-50, #F6F6F6);
    padding: 10px 10px 5px 10px;
    margin:0;
}

.input-chat{
    border-radius: 16px;
    border: 1px solid var(--Gray-200, #D1D1D1);
    background: #FFF;
    width:100%;
    height:48px;
    position: relative;
    padding: 10px 10px 10px 40px;
}

.chat-content{
    background-color: #FCE7E8;
    background-image: url('../img/chat-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px;
}

.chat-input  {
    padding: 10px 10px ;
}

.input-icon {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
font-size: 18px;
color: #aaa;
cursor: pointer;
}

.chat-bubble {
    padding: 10px 15px 5px 15px;
    border-radius: 10px;
    max-width: 80%;
    word-wrap: break-word;
}

.chat-bubble.user {
    border-radius: 8px;
    border: 1px solid var(--Primary-200, #F8D3D4);
    background: var(--Primary-50, #FDF4F3);
    color: #3D3D3D;
    margin: 0px 0px 10px 0px;
}

.chat-bubble.doctor {
    border-radius: 8px;
    border: 1px solid var(--Primary-300, #F3AEB2);
    background: var(--Primary-200, #F8D3D4);
    color: #3D3D3D;
    margin: 10px;
    align-self: flex-end;
    margin: 0px 0px 10px 0px;
}

.chat-time{
    text-align: end;
    font-style: italic;
    font-size: 11px;
}

.nav-link{
    height:48px !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color:#5D5D5D;
}

.nav-link.active{
    color:#8E2339 !important;
    border-bottom: 4px solid var(--Primary-800, #8E2339) !important;
    border: none;
}

.saving-indicator{
    color: var(--Gray-800, #454545);
    font-size: 12px;
    font-style: italic;
    font-weight: 300;
    line-height: 140%; /* 16.8px */
}

#upload-trigger{
    cursor: pointer;
}

.resep-container{
    background: #F6F6F6;
}

.custom-bar {
    background-color: #2c2c2c;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;

    border-radius: 24px;
    background: rgba(23, 23, 23, 0.60);
    backdrop-filter: blur(16.549999237060547px);
}

.custom-bar .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    margin:0 10px;
}

.custom-bar .icon i {
    font-size: 24px;
}

.custom-bar .icon span {
    margin-top: 5px;
    font-size: 14px;
}

.custom-bar .separator {
    border-left: 1px solid white;
    height: 50px;
}

.search-input {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #888;
}

.search-input input {
    border: none;
    outline: none;
    width: 100%;
    color: #888;
}

.search-input input::placeholder {
    color: #888;
}

.search-input i {
    font-size: 16px;
    color: #888;
    margin-right: 10px;
}

.back{
    color: var(--Primary-600, #CA344B);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    text-decoration: none;
}

.section-header{
    color: var(--Gray-600, #5D5D5D);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

#keluhan{
    padding: 10px;
}

#catatan-history{
    padding: 10px;
}

#resep-history{
    padding: 10px;
}

.dokter-name{
    overflow: hidden;
    color: var(--Gray-800, #454545);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

#myTabDetailHistory {
    border-top: 1px solid var(--Gray-200, #D1D1D1);
    border-bottom: 1px solid var(--Gray-200, #D1D1D1);
}

.card-body.pengaturan{
    padding: 0;
}
.pengaturan-menu{
    display: flex;
    width:180px;
    padding: 19px 16px 19px 24px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    cursor: pointer;
    color: #5D5D5D;
}

.pengaturan-menu.active{
    background: var(--Primary-100, #FCE7E8);
    color: #7A2136;
}

.section-title {
    color: var(--Primary-950, #4C0F1C);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 30px */
}
.btn-primary {
    background-color: #b73c3c;
    border-color: #b73c3c;
    font-weight: bold;
    width: 100%;
}
.btn-primary:hover {
    background-color: #a33232;
    border-color: #a33232;
}
.position-relative .form-control {
    padding-right: 2.5rem; /* Ruang untuk ikon mata */
}
.password-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(10%);
    color: #aaa;
    cursor: pointer;
}
.password-icon:hover {
    color: #b73c3c;
}

.profile-header{
    border-radius: 0px 24px 0px 88px;
    background: var(--Primary-900, #7A2136);
}

.nama-profile{
    color: var(--Gray-50, #F6F6F6);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 36px */
}

.btn-edit{
    border-radius: 8px;
    border: 1px solid var(--Gray-600, #5D5D5D);
    background: var(--Neutral-10, #FFF);
    color: var(--Gray-600, #5D5D5D);
    text-align: right;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
}

.sub-title{
    color: var(--Gray-400, #888);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    display: block;
}
.sub-content{
    color: var(--Gray-800, #454545);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

.btn-add{
    border-radius: 12px;
    background: var(--Primary-600, #CA344B);
    color: #ffffff;
}

.btn-del{
    border-radius: 8px;
    border: 1px solid #E70427;
    background: var(--Neutral-10, #FFF);
    color: var(--Primary-600, #CA344B);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
}

.modal-content {
    border-radius: 10px;
  }
  .modal-body {
    padding: 20px;
    text-align: center;
    position: relative;
  }
  .modal-body .warning-title {
    color: #7E2222;
    font-weight: bold;
    font-size: 18px;
  }
  .modal-body p {
    color: #333;
    margin: 10px 0 20px;
  }
  .detail-card {
    background-color: #FDEDED;
    border: 1px solid #E3B5B5;
    border-radius: 8px;
    padding: 15px;
    text-align: left;
    margin-bottom: 20px;
  }
  .detail-card h6 {
    color: #7E2222;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .detail-card p {
    margin: 0;
    color: #333;
  }
  .btn-danger {
    background-color: #B22222;
    border-color: #B22222;
  }
  .btn-outline-danger {
    color: #B22222;
    border-color: #B22222;
  }
  .btn-outline-danger:hover {
    background-color: #FDEDED;
  }
  .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FDEDED;
    border: 1px solid #E3B5B5;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    color: #7E2222;
    cursor: pointer;
  }
  .btn-close:hover {
    background-color: #E3B5B5;
    color: #B22222;
  }

  .modal-content {
    border-radius: 10px;
  }
  .modal-body {
    padding: 20px;
  }
  .modal-header {
    border-bottom: none;
    padding-bottom: 0;
  }
  .modal-title {
    color: #7E2222;
    font-weight: bold;
    font-size: 18px;
  }
  .form-label {
    margin-bottom: 5px;
    color: var(--Gray-600, #5D5D5D);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
  }
  .form-control {
    border: 1px solid #E3B5B5;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
  }
  .btn-danger {
    background-color: #B22222;
    border-color: #B22222;
  }
  .btn-outline-danger {
    color: #B22222;
    border-color: #B22222;
  }
  .btn-outline-danger:hover {
    background-color: #FDEDED;
  }
  .modal-footer {
    border-top: none;
    justify-content: space-between;
  }
  .btn-close {
    color: #7E2222;
    font-size: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .btn-close:hover {
    color: #B22222;
  }

  .username{
    color: var(--Gray-950, #171717);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
  }

  .sub-username{
    color: var(--CoolGray-60, #697077);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
  }

  .logout{
    color: var(--Primary-600, #CA344B);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
  }

  /* Mengubah warna teks dan latar belakang pagination */
.dataTables_paginate .pagination .page-item .page-link {
    background-color: #fff !important; /* Hijau untuk latar belakang */
    color: #CA344B !important; /* Putih untuk teks */
}

/* Mengubah warna pagination aktif */
.dataTables_paginate .pagination .page-item.active .page-link {
    background-color: #CA344B !important; /* Hijau tua untuk item aktif */
    border: none !important; /* Hijau untuk border */
    color:#fff !important;
}

/* Mengubah hover efek pada pagination */
.dataTables_paginate .pagination .page-item .page-link:hover {
    background-color: #CA344B !important; /* Hijau tua untuk hover */
    color: #fff !important;
}

.pagination{
    margin-bottom: 0px;
}

.table-maroon th{
    border-top: 1px solid var(--Gray-200, #D1D1D1);
    background: #7A2136 !important;

    color: #F6F6F6;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
}

.table-maroon tr{
    border-radius: 24px !important;
    border: 1px solid var(--CoolGray-20, #DDE1E6);
    background: var(--Default-White, #FFF);
}

.number-table{
    width: 50px;
    text-align: center;
}

/* Membuat tabel memiliki sudut melengkung di bagian atas */
.dataTables_wrapper .dataTables_scroll {
    border-radius: 8px 8px 0 0 !important; /* Rounded pada bagian atas */
    overflow: hidden; /* Pastikan tidak ada elemen yang keluar */
}

/* Menangani elemen header */
.dataTables_wrapper .dataTables_scrollHead {
    border-radius: 8px 8px 0 0 !important; /* Rounded pada header */
    overflow: hidden;
}

.dataTable {
    border-radius: 16px 16px 0 0; /* Rounded hanya di atas */
    overflow: hidden; /* Pastikan elemen tetap di dalam */
}

.table-container {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .table-header {
    background-color: #7A2136 !important;
    color: white !important;
    font-size: 18px;
    padding: 10px 15px;
    vertical-align: middle !important;
  }

.table-header{
    display: table;
    width: 100%; /* Agar thead tetap sejajar dengan kolom */
    table-layout: fixed;
}

.table>:not(caption)>*>* {
    background-color: transparent;
}
.table tr th{
    color: #F6F6F6 !important;
    font-size: 14px;
}

.table tbody {
    display: block; /* Membuat tbody independen dari thead */
    overflow-y: auto; /* Aktifkan scroll vertical di tbody */
    height: 100%; /* Isi sisa tinggi dari parent */
}

.table tbody tr {
    display: table;
    width: 100%; /* Pastikan kolom sejajar */
    table-layout: fixed; /* Mencegah kolom berubah ukuran */
}

.reset-heading{
    color: var(--Gray-950, #171717);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; 
}

.reset-back{
    color: var(--Primary-600, #CA344B);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}