.mce-notification {
    display: none !important;
}

.dt-buttons {
    margin-bottom: 10px;
    float: right;
}
.select2-selection--multiple{
        border: var(--bs-border-width) solid var(--bs-border-color) !important;
        padding:.250rem 2.85rem .517rem .95rem !important;
        font-size: .812rem !important;
        font-weight: 400 !important;
        line-height: 1.5 !important;
        color: var(--bs-body-color) !important;
}
/* Select2 container adjustment */
.select2-container--default .select2-selection--single {
    background-color: var(--bs-card-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding: 0 2.85rem 0 .95rem;
    font-size: .812rem;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23555b7e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .95rem center;
    background-size: 16px 12px;
    height: auto !important;
    display: flex;
    align-items: center;
    appearance: none;
    -webkit-appearance: none;
}

/* Remove Select2 arrow, we already have background icon */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

/* Adjust text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--bs-body-color);
    padding: 0;
}

/* Make sure container behaves like form-select */
.select2-container--default.select2-container .select2-selection--single {
    height: auto;
    min-height: 38px;
    box-shadow: none;
}
/* .border-radius-20{
    border-radius: 20px !important;
} */
.border-radius-16{
    border-radius: 16px !important;
}
.card, .modal-content{
    border-radius: 1rem !important;
}
.modal-header{
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}
.custom-command {
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* HEADER */
.command-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.command-header i {
    color: #9aa0a6;
    font-size: 18px;
}

.command-header input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 18px;
}

.esc-btn {
    background: #eee;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    color: #666;
}

/* BODY */
.custom-command {
    height: 500px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* header tetap */
.command-header {
    flex-shrink: 0;
}

/* body full */
.command-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0; /* 🔥 WAJIB biar flex scroll jalan */
}

/* wrapper scroll */
.command-list-wrapper {
    flex: 1;
    overflow-y: auto;
    min-height: 0; /* 🔥 WAJIB juga */
}


/* LIST yang scroll */
.command-list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    margin: 0;
}

.command-list::-webkit-scrollbar {
    width: 6px;
}

.command-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.command-section-title {
    font-size: 12px;
    font-weight: bold;
    color: #999;
    padding: 10px 20px;
}

.command-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 12px;
    margin: 2px 10px;
    transition: all 0.2s ease;
}

.command-item i {
    width: 20px;
    text-align: center;
    color: #6b7280;
}

/* HOVER */
.command-item:hover {
    background-color: rgba(34, 197, 94, .05);
}

/* ACTIVE (kayak Dashboard di gambar) */
.command-item.active {
    background-color: rgba(34, 197, 94, .05);
    color: #22c55e;
}

.command-item.active i {
    color: #22c55e;
}
.nav-pills .nav-link {
    border: 1px solid #22c55e;
    margin-right: 10px;
    color: #22c55e;
}