.admin-main-container {
    display: flex;
    flex-direction: row;
    min-height: 100dvh;
}
.admin-content-container {
    /* width: 80%; */
    width: 100%;
}
.admin-content-wrap {
    padding: 30px;
}

/* sidebar custom style */
.admin-sidebar-container {
    width: 20%;
    background-color: #0F2854;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.admin-sidebar-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.admin-sidebar-header-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 30px;
}
.admin-sidebar-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
.admin-sidebar-header-user {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.admin-sidebar-header-user h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.33;
}
.admin-sidebar-header-user p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.08;
}
.admin-sidebar-menu {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.admin-sidebar-menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.admin-sidebar-menu ul li {
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
}
.admin-sidebar-menu ul li:hover {
    background-color: #BDE8F5;
}
.admin-sidebar-menu ul li:hover a img {
    filter: invert(0);
}
.admin-sidebar-menu ul li:hover a span {
    color: #000000;
}
.admin-sidebar-menu ul li a {
    padding: 12px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
}
.admin-sidebar-menu ul li a img {
    flex-shrink: 0;
    filter: invert(1);
    width: 28px;
    height: 28px;
    transition: all 0.3s ease-in-out;
}
.admin-sidebar-menu ul li a span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}
.btn-admin-sidebar {
    background-color: #BDE8F5;
    border-radius: 6px;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

/* header custom style */
.admin-header-container {
    width: 100%;
    background-color: #1C4D8D;
    padding: 20px 30px;
}
.admin-header-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.admin-header-title h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.33;
    color: #ffffff;
}
.admin-header-left-menu ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}
.admin-header-left-menu ul li a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    transition: all 0.3s ease-in-out;
}
.admin-header-left-menu ul li a:hover,
.admin-header-left-menu ul li a.active {
    color: #BDE8F5;
}
.admin-header-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.admin-header-menu-name {
    text-align: end;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    margin-right: 20px;
}
.admin-header-menu-name .admin-header-menu-name-user {
    font-weight: 500;
}
.admin-header-menu-name .admin-header-menu-name-email {
    font-size: 16px;
}
.admin-header-menu a,
.admin-header-menu button {
    padding: 10px;
    background-color: #BDE8F5;
    border-radius: 6px;
}

/* content custom style */
.content-card {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}
.content-card h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    color: #000000;
    padding-left: 16px;
    position: relative;
    margin-bottom: 30px;
}
.content-card h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: #000000;
    padding-left: 16px;
    position: relative;
    margin-bottom: 30px;
}
.content-card h2::before,
.content-card h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background-color: #1C4D8D;
    border-radius: 6px;
}
.content-card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.form-upload-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.form-upload-item {
    border: 1px solid #0F2854;
    border-radius: 6px;
    background-color: #BDE8F5;
    padding: 10px;
    width: 250px;
    max-width: 250px;
    height: 100%;
    position: relative;
    cursor: pointer;
}
.form-upload-file {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}
.form-upload-item label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #444444;
    pointer-events: none;
}
.btn-submit-upload {
    background-color: #0F2854;
    padding: 14px 18px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}
#table-poin_wrapper .dt-search #dt-search-0 {
    max-width: 250px;
    width: 250px;
    border-radius: 6px;
    border: 1px solid #4988C4;
    padding: 6px 12px;
}
.filter-date-custom {
    border: 1px solid #4988C4;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
}
#table-poin_wrapper .page-link {
    color: #0F2854;
}
#table-poin_wrapper .active>.page-link, 
#table-poin_wrapper .page-link.active {
    background-color: #0F2854;
    border-color: #0F2854;
    color: #ffffff;
}