body {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", serif;  
    color: rgb(55, 65, 81);
    font-style: normal;
    background: linear-gradient(180deg, #9cefcc, #efffd1);
    background-repeat: no-repeat;
}

.dm-sans {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}


::selection {
    background-color: #84ba3f;
    color: white;
}

.min-height-setup {
    min-height: 47vh;
    /* 57 pada saat user click full screnn */
    /* min-height: 57vh; */
}

/* img{
    user-select: none;
    pointer-events: none;
} */

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.pagination li {
    margin: 0 3px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    color: #4a5568;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease-in-out;
}

.pagination a:hover,
.pagination .active span {
    background-color: #ff9500;
    color: #ffffff;
    border-color: #4a5568;
}

/*SCROLL Y CUSTOM */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #8bb3cd;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #92dfbe;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* SIDEBAR */
.sidebar-transition {
    transition: transform 0.3s ease-in-out;
}

.main_konten {
    transition: transform 0.3s ease-in-out;
}

/* main gambar */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-image img {
    animation: float 3s ease-in-out infinite;
    /* Sesuaikan durasi animasi */
}

/* scroll custom sidebar ujian */
.scrollbar-hide::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.hover\:scrollbar-show:hover::-webkit-scrollbar {
    width: 6px;
}

.hover\:scrollbar-show:hover::-webkit-scrollbar-thumb {
    background: #ff9500;
}

/* title mega root */
.mega-title {
    font-weight: 800;
    font-size: 26px;
    color: #1f2937;
    letter-spacing: -0.015em;
    line-height: 1;
    margin-bottom: 2.3rem;
}

@media (max-width: 768px) {
    .mega-title {
        font-size: 22px;
        font-weight: bold;
    }
}

/* title base root */
.title-base {
    font-weight: bold;
    font-size: 18px;
    color: #1f2937;
    letter-spacing: -0.015em;
    line-height: 1;
    margin-top: 22px;
}

@media (min-width: 1024px) {
    .title-base {
        font-size: 24px;
    }
}

/* button-unduh */
.button-unduh {
    background-color: #4ade80;
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.875rem;
}

/* quils js base output */
.ql-editor ol {
    list-style-type: decimal;
    padding-left: 1.25rem;
}

.ql-editor ul {
    list-style-type: disc;
    padding-left: 1.25rem;
}

.ql-editor p {
    margin-top: 10px;
}

.ql-editor p:has(strong):not(:has(:not(strong))) + p {
  margin-top: 0;
}

.ql-editor p a {
    text-decoration: underline;
    text-decoration-color: rgb(105, 105, 247);
    color: rgb(105, 105, 247);
    text-underline-offset: 3px;
    font-size: 15px;
}