.topbar-user .profile-pic {
    display: flex;
    align-items: center;
}

.topbar-user .avatar-sm {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-user .status-indicator {
    width: 10px;
    height: 10px;
    border: 2px solid white;
}

.topbar-user .profile-username {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2; /* Memastikan spasi vertikal sesuai */
}

.topbar-user .small.text-muted {
    display: flex;
    align-items: center;
}

#sidebar-form {
    width: 420px;
    position: fixed;
    right: -440px;
    top: 0;
    height: 100vh;
    background: var(--bs-white);
    box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    z-index: 1050;
    overflow-y: auto;
    border-radius: 0px 0 0 0px;
}
#sidebar-form.active {
    right: 0;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1049;
}
.overlay.active {
    display: block;
}

.form-control {
    border-radius: 10px;
    padding: 10px;
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}


.select2-container .select2-selection--single {
    box-sizing: border-box !important;
    cursor: pointer !important;
    display: block !important;
    height: 45px !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    /* padding: 6px !important; */
    font-size: 16px !important;
    border-radius: 10px !important;
    border: 2px solid #ebedf2 !important;
}
/* 
.select2-container .select2-selection--single:focus {
    border: 2px solid #000000 !important;
} */

/* .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border: 2px solid #000000 !important;
} */

.background-svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 700"><defs><linearGradient id="bgGradient" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%232D9CDB;stop-opacity:1"/><stop offset="100%" style="stop-color:%2356CCF2;stop-opacity:1"/></linearGradient></defs><rect width="1440" height="700" fill="url(%23bgGradient)"/><circle cx="200" cy="100" r="50" fill="white" opacity="0.3"/><circle cx="1300" cy="600" r="70" fill="white" opacity="0.2"/><path d="M300 250 Q450 150, 600 250 T900 250" stroke="white" stroke-width="4" fill="none" opacity="0.4"/><path d="M100 500 Q300 350, 500 500 T900 500" stroke="white" stroke-width="3" fill="none" opacity="0.3"/><circle cx="720" cy="180" r="50" fill="white" opacity="0.2"/><circle cx="720" cy="180" r="25" fill="%232D9CDB"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

ul.no-dot-list {
    list-style: none;
    padding-left: 0; /* Menghilangkan indentasi bawaan */
    margin-left: 0;
}

/* Login */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: var(--bs-component-active-bg);
    min-height: 100vh;
}

.sign-up-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: var(--bs-component-active-bg);
    min-height: 100vh;
}

@media (max-width: 600px) {
    .word-text {
        display: none;
    }
    .login-container {
        padding: 0px 30px 0px 30px;
    }
    .sign-up-container {
        padding: 30px 30px 0px 30px;
    }
}

.required {
    color: red;
}
