@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
    font-family: "Inter", serif !important;
}


.empty-content {
    background: #f7f9fc;
    width: 100%;
    padding: 20px;
}

.empty-content h1 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.empty-content p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #8f9bb3;
}

.form-control-internal {
    background: #f7f9fc;
    color: #151a30;
}

.form-control-internal:focus,
.form-control-internal:active {
    background: #f7f9fc !important; /* Memastikan background tetap sama saat focus */
    box-shadow: none !important; /* Menghilangkan efek shadow Bootstrap */
    border-color: #ced4da !important; /* Sesuaikan warna border jika diperlukan */
}

.delete-content-card {
    position: relative;
    right: 18px;
    color: #ea443e;
    font-weight: 500;
}

.btn-blank {
    width: 100%;
    border: 1px solid !important;
    border-color: #2f5ed9 !important;
    background: none;
    color: #2f5ed9;
    font-weight: 400;
}

.container_label {
    display: flex;
    gap: 15px;
    align-items: center;
}

.item_label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.circle_label {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
}

.sasaran {
    background-color: #8e44ad; /* Violet */
}

.urusan {
    background-color: #3498db; /* Blue */
}

.bidang-urusan {
    background-color: #1abc9c; /* Teal */
}

.kegiatan {
    background-color: #1bc5bd;
}

.label_label {
    font-size: 12px;
    font-weight: 500;
}

.alias_name_user {
    width: auto;
    border-radius: 6px;
    background: #2f5ed9;
    color: #fff;
    display: flex; /* Mengaktifkan flexbox */
    justify-content: center; /* Menempatkan konten di tengah secara horizontal */
    align-items: center;
    padding: 1px;
}

.pointer {
    cursor: pointer;
}

.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.spinner_ {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

.modal_span {
    font-family: "Inter", serif;
    font-weight: 400;
    font-size: 12px;
    color: #c4c7cf;
    position: absolute;
    top: 54px;
}

.box-filter-cascading {
    height: 168px;
    border-radius: 10px;
    border: 1px solid #c5cee0a8;
    padding: 20px;
}

.box-filter-cascading p {
    font-family: "Inter", serif;
    font-weight: 500;
    font-size: 12px;
    color: #151a30;
    line-height: 20px;
}

.box-filter-cascading span {
    font-family: "Inter", serif;
    font-weight: 600;
    font-size: 38px;
    color: #8f9bb3;
}

.box-filter-cascading:hover {
    background: #2f5ed914;
    border: 1px solid #2f5ed9;
    cursor: pointer;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

