body { min-height: 100vh; }
code { font-size: .95rem; }
.card { border-radius: 14px; }

.output-data{
    padding: 15px;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    max-height: 300px;
    overflow: auto;
}

/* CARD */
.card-modern {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #eee;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

/* ALERT BASE */
.alert-modern {
    border-radius: 14px;
    padding: 16px;
    border: 1px solid;
    background: #fff;
}

/* ICON BASE */
.alert-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* SUCCESS */
.alert-modern.success {
    background: #f6fffa;
    border-color: #b7ebc6;
}
.alert-icon.success {
    background: #dcfce7;
    color: #16a34a;
}

/* ERROR */
.alert-modern.error {
    background: #fff1f2;
    border-color: #fecdd3;
}
.alert-icon.error {
    background: #fee2e2;
    color: #dc2626;
}

/* WARNING */
.alert-modern.warning {
    background: #fffbeb;
    border-color: #fde68a;
}
.alert-icon.warning {
    background: #fef3c7;
    color: #d97706;
}

/* INFO */
.alert-modern.info {
    background: #eff6ff;
    border-color: #bfdbfe;
}
.alert-icon.info {
    background: #dbeafe;
    color: #2563eb;
}

/* STAT */
.stat-box {
    background: #fafafa;
    border-radius: 14px;
    padding: 16px;
    border: 1px solid #eee;
    transition: all 0.2s ease;
}

.stat-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
}

/* BUTTON */
.btn-outline-primary {
    border-radius: 10px;
}

/* PROCESS */
.alert-modern.process {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.alert-icon.process {
    background: #e0f2fe;
    color: #0284c7;
}

/* BADGE BASE */
.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

/* SUCCESS */
.badge-soft-success {
    background: #ecfdf3;
    color: #16a34a;
}

/* ERROR */
.badge-soft-danger {
    background: #fef2f2;
    color: #dc2626;
}

/* WARNING */
.badge-soft-warning {
    background: #fffbeb;
    color: #d97706;
}

/* INFO */
.badge-soft-info {
    background: #eff6ff;
    color: #2563eb;
}

/* PROCESS */
.badge-soft-process {
    background: #f1f5f9;
    color: #0f172a;
}

/* OPTIONAL ICON STYLE */
.badge-soft .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.7;
}
