.notistack-SnackbarContainer {
    margin-top: 30px;
}

#mfe_perf_cards .rl-mfe-performance-cards {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.rl-mfe-default-rule input[type=checkbox] {
    height: 100% !important;
    border: none !important;
}

.rl-mfe-default-rule .MuiOutlinedInput-input,
.rl-mfe-default-rule .MuiInputBase-inputAdornedStart {
    border: none !important;
    box-shadow: none !important;
}

.rl-mfe-default-rule.MuiTypography-body2,
.rl-mfe-default-rule.MuiTypography-caption {
    color: rgb(108, 117, 125);
}

.rl-mfe-btn {
    appearance: none;
    border: none;
    border-radius: 8px; /* mirip shadcn (rounded-xl) */
    padding: 0.75rem 1.25rem;
    background-color: #0076CE; /* biru solid */
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    text-decoration: none !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition:
            background-color 0.15s ease,
            box-shadow 0.15s ease,
            transform 0.05s ease;
}

/* hover dikit aja */
.rl-mfe-btn:hover {
    background-color: #00416A;
    color: white !important;
}

/* active (pas ditekan) */
.rl-mfe-btn:active {
    transform: translateY(1px);
}

/* 🔥 shadcn-style focus ring */
.rl-mfe-btn:focus-visible {
    outline: none;
    box-shadow:
            0 0 0 2px #ffffff,          /* inner gap */
            0 0 0 4px rgba(10,108,255,.6); /* ring biru */
}

/* disabled versi sopan */
.rl-mfe-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.rl-mfe-btn--soft {
    appearance: none;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;

    background-color: transparent;
    color: #00416A; /* same text tone */

    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    text-decoration: none !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition:
            background-color 0.15s ease,
            box-shadow 0.15s ease,
            transform 0.05s ease;
}

.rl-mfe-btn--soft:hover {
    background-color: rgba(0, 0, 0, 0.06); /* shadcn-like neutral hover */
    color: #00416A;
}

.rl-mfe-btn--soft:active {
    transform: translateY(1px);
    background-color: rgba(0, 0, 0, 0.1);
}

.rl-mfe-btn--soft:focus-visible {
    outline: none;
    box-shadow:
            0 0 0 2px #ffffff,
            0 0 0 4px rgba(0, 118, 206, 0.35);
}

.rl-mfe-btn--soft:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.rl-mfe-card {
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    background: white;
}

.rl-mfe-rounded {
    border-radius: 8px;
}