@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

body {
    font-family: "Poppins", sans-serif;
    background: #ececec;
    font: 90%/1em;
    overflow-x: hidden;
}

.box-area{
    width: 800px;
}

.img-bg-login{
    width: 700px;
    height: 100%;
    border-top-right-radius:.5rem; 
    border-bottom-right-radius:.5rem
}

::placeholder{
    font-size: 16px;
}

.left-box{
    padding: 40px 30px 40px 40px;
}

.mobile-version{
    visibility: hidden;
    height: 0px;    
}


@media only screen and (max-width: 768px){
    .box-area{
       margin: 0 10px;
    }
    .left-box{
       height: 450px;
       overflow: hidden;
    }
    .right-box{
       padding: 20px;
    }

    .mobile-version{
        height: 250px;
    }
    
    .img-bg-login{ 
        visibility: hidden;
        height: 0px;
    }
   
}


table.dataTable {
    font-size: .8em !important;
}

table.dataTable th {
    padding: .2em .5em !important;
}
    
.table.dataTable td {
    padding: 5px; /* Sesuaikan dengan kebutuhan Anda */
}   

.delete {
    cursor: pointer;
}

.tooltip {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tooltip-visible {
    opacity: 1;
    visibility: visible;
}

.nav-link > .nav-icon {
    font-size: .5rem !important;
}

.btn-progress {
    position: relative;
    font-size: 16px;
    color: #ffffff;
    background-color: #007bff;
    cursor: not-allowed;
    opacity: 0.8;
}

.btn-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    margin-left: -0.5em;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.cursor-pointer{
    cursor: pointer;
}

.school-tag {
    z-index: 1000;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid rgb(0, 64, 126);
    color: #000;
    font-size: 10px;
    padding: 5px;
    position: absolute;
    white-space: nowrap;
    transition: transform 0.3s ease;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    transform: translate(-50%, -85%); /* Pergeseran lebih kecil */
}


.school-tag::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%; /* Tepat di bawah kotak */
    transform: translate(-50%, 0);
    width: 1px;
    height: 10px;
    background: rgb(0, 64, 126); /* Warna garis */
}

.school-tag::before {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 10px); /* Geser lingkaran kecil lebih dekat ke marker */
    transform: translate(-50%, 0);
    width: 5px;
    height: 5px;
    background: rgb(0, 64, 126);
    border-radius: 50%;
}

.info-box-text{
    font-size: .9rem;
}


