:root {
    --mm-primary: #2563eb;
    --mm-primary-dark: #1e40af;
    --mm-secondary: #7c3aed;
    --mm-accent: #06b6d4;
    --mm-bg: #eef4ff;
    --mm-card: #ffffff;
    --mm-text: #172033;
    --mm-muted: #64748b;
    --mm-border: #dbeafe;
    --mm-danger: #dc2626;
    --mm-warning: #d97706;
    --mm-success: #059669;
    --mm-radius: 18px;
}

* {
    box-sizing: border-box;
}

body.mm-body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, .20), transparent 34%),
        radial-gradient(circle at top right, rgba(124, 58, 237, .18), transparent 32%),
        linear-gradient(135deg, #f8fbff 0%, #eef4ff 55%, #f5f3ff 100%);
    color: var(--mm-text);
    min-height: 100vh;
}

.mm-navbar {
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(219, 234, 254, .9);
    position: sticky;
    top: 0;
    z-index: 20;
}

.mm-navbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.mm-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--mm-primary-dark);
    text-decoration: none;
    letter-spacing: .2px;
}

.mm-brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--mm-primary), var(--mm-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
}

.mm-nav-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mm-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 22px 60px;
}

.mm-hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: center;
    margin-top: 18px;
}

.mm-hero-card,
.mm-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(219, 234, 254, .95);
    border-radius: var(--mm-radius);
    box-shadow: 0 20px 45px rgba(30, 64, 175, .10);
}

.mm-hero-card {
    padding: 36px;
}

.mm-card {
    padding: 26px;
}

.mm-title {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    margin: 0 0 18px;
    color: #0f172a;
}

.mm-title span {
    color: var(--mm-primary);
}

.mm-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: var(--mm-muted);
    margin: 0;
}

.mm-badge-row {
    display: flex;
    gap: 10px;
    margin: 22px 0;
    flex-wrap: wrap;
}

.mm-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--mm-primary-dark);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #bfdbfe;
}

.mm-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.mm-btn,
button.mm-btn {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 800;
    padding: 12px 18px;
    border-radius: 12px;
    transition: .18s ease;
    font-size: 14px;
}

.mm-btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--mm-primary), var(--mm-secondary));
    box-shadow: 0 12px 24px rgba(37, 99, 235, .20);
}

.mm-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, .25);
}

.mm-btn-secondary {
    color: var(--mm-primary-dark);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.mm-btn-dark {
    color: white;
    background: #172033;
}

.mm-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mm-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mm-section-title {
    font-size: 22px;
    margin: 0 0 18px;
    color: #0f172a;
}

.mm-feature {
    padding: 20px;
    border: 1px solid var(--mm-border);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mm-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #dbeafe;
    color: var(--mm-primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    margin-bottom: 12px;
}

.mm-form {
    margin-top: 18px;
}

.mm-form-section {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--mm-border);
}

.mm-form-section:first-child {
    border-top: 0;
    padding-top: 0;
}

.mm-label {
    display: block;
    font-weight: 800;
    margin-bottom: 7px;
    color: #1e293b;
}

.mm-input,
.mm-select,
.mm-textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    background: white;
    color: var(--mm-text);
    padding: 12px 13px;
    border-radius: 12px;
    outline: none;
    transition: .18s ease;
}

.mm-input:focus,
.mm-select:focus,
.mm-textarea:focus {
    border-color: var(--mm-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.mm-textarea {
    min-height: 110px;
    resize: vertical;
}

.mm-full {
    grid-column: 1 / -1;
}

.mm-hint {
    margin-top: 6px;
    color: var(--mm-muted);
    font-size: 13px;
}

.mm-alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    border: 1px solid transparent;
}

.mm-alert-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.mm-alert-success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

.mm-alert-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.mm-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--mm-border);
    border-radius: 16px;
}

.mm-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}

.mm-table th,
.mm-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--mm-border);
    text-align: left;
    vertical-align: top;
}

.mm-table th {
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.mm-status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    background: #e2e8f0;
    color: #334155;
}

.mm-status-success {
    background: #dcfce7;
    color: #166534;
}

.mm-status-warning {
    background: #fef3c7;
    color: #92400e;
}

.mm-status-danger {
    background: #fee2e2;
    color: #991b1b;
}

.mm-status-info {
    background: #dbeafe;
    color: #1e40af;
}

.mm-footer {
    text-align: center;
    color: var(--mm-muted);
    padding: 28px 20px 42px;
    font-size: 13px;
}

@media (max-width: 860px) {
    .mm-hero,
    .mm-grid-2,
    .mm-grid-3 {
        grid-template-columns: 1fr;
    }

    .mm-navbar-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .mm-hero-card,
    .mm-card {
        padding: 22px;
    }

    .mm-wrapper {
        padding: 22px 14px 44px;
    }
}

@media (max-width: 520px) {
    .mm-actions,
    .mm-nav-actions {
        flex-direction: column;
        width: 100%;
    }

    .mm-btn,
    button.mm-btn {
        width: 100%;
    }

    .mm-title {
        f
cd ~/staging_lawlab
mkdir -p public/css

cat > public/css/magang-mandiri.css <<'CSS'
:root {
    --mm-primary: #2563eb;
    --mm-primary-dark: #1e40af;
    --mm-secondary: #7c3aed;
    --mm-accent: #06b6d4;
    --mm-bg: #eef4ff;
    --mm-card: #ffffff;
    --mm-text: #172033;
    --mm-muted: #64748b;
    --mm-border: #dbeafe;
    --mm-danger: #dc2626;
    --mm-warning: #d97706;
    --mm-success: #059669;
    --mm-radius: 18px;
}

* {
    box-sizing: border-box;
}

body.mm-body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, .20), transparent 34%),
        radial-gradient(circle at top right, rgba(124, 58, 237, .18), transparent 32%),
        linear-gradient(135deg, #f8fbff 0%, #eef4ff 55%, #f5f3ff 100%);
    color: var(--mm-text);
    min-height: 100vh;
}

.mm-navbar {
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(219, 234, 254, .9);
    position: sticky;
    top: 0;
    z-index: 20;
}

.mm-navbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.mm-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--mm-primary-dark);
    text-decoration: none;
    letter-spacing: .2px;
}

.mm-brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--mm-primary), var(--mm-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
}

.mm-nav-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mm-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 22px 60px;
}

.mm-hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: center;
    margin-top: 18px;
}

.mm-hero-card,
.mm-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(219, 234, 254, .95);
    border-radius: var(--mm-radius);
    box-shadow: 0 20px 45px rgba(30, 64, 175, .10);
}

.mm-hero-card {
    padding: 36px;
}

.mm-card {
    padding: 26px;
}

.mm-title {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    margin: 0 0 18px;
    color: #0f172a;
}

.mm-title span {
    color: var(--mm-primary);
}

.mm-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: var(--mm-muted);
    margin: 0;
}

.mm-badge-row {
    display: flex;
    gap: 10px;
    margin: 22px 0;
    flex-wrap: wrap;
}

.mm-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--mm-primary-dark);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #bfdbfe;
}

.mm-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.mm-btn,
button.mm-btn {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 800;
    padding: 12px 18px;
    border-radius: 12px;
    transition: .18s ease;
    font-size: 14px;
}

.mm-btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--mm-primary), var(--mm-secondary));
    box-shadow: 0 12px 24px rgba(37, 99, 235, .20);
}

.mm-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, .25);
}

.mm-btn-secondary {
    color: var(--mm-primary-dark);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.mm-btn-dark {
    color: white;
    background: #172033;
}

.mm-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mm-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mm-section-title {
    font-size: 22px;
    margin: 0 0 18px;
    color: #0f172a;
}

.mm-feature {
    padding: 20px;
    border: 1px solid var(--mm-border);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mm-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #dbeafe;
    color: var(--mm-primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    margin-bottom: 12px;
}

.mm-form {
    margin-top: 18px;
}

.mm-form-section {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--mm-border);
}

.mm-form-section:first-child {
    border-top: 0;
    padding-top: 0;
}

.mm-label {
    display: block;
    font-weight: 800;
    margin-bottom: 7px;
    color: #1e293b;
}

.mm-input,
.mm-select,
.mm-textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    background: white;
    color: var(--mm-text);
    padding: 12px 13px;
    border-radius: 12px;
    outline: none;
    transition: .18s ease;
}

.mm-input:focus,
.mm-select:focus,
.mm-textarea:focus {
    border-color: var(--mm-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.mm-textarea {
    min-height: 110px;
    resize: vertical;
}

.mm-full {
    grid-column: 1 / -1;
}

.mm-hint {
    margin-top: 6px;
    color: var(--mm-muted);
    font-size: 13px;
}

.mm-alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    border: 1px solid transparent;
}

.mm-alert-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.mm-alert-success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

.mm-alert-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.mm-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--mm-border);
    border-radius: 16px;
}

.mm-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}

.mm-table th,
.mm-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--mm-border);
    text-align: left;
    vertical-align: top;
}

.mm-table th {
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.mm-status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    background: #e2e8f0;
    color: #334155;
}

.mm-status-success {
    background: #dcfce7;
    color: #166534;
}

.mm-status-warning {
    background: #fef3c7;
    color: #92400e;
}

.mm-status-danger {
    background: #fee2e2;
    color: #991b1b;
}

.mm-status-info {
    background: #dbeafe;
    color: #1e40af;
}

.mm-footer {
    text-align: center;
    color: var(--mm-muted);
    padding: 28px 20px 42px;
    font-size: 13px;
}

@media (max-width: 860px) {
    .mm-hero,
    .mm-grid-2,
    .mm-grid-3 {
        grid-template-columns: 1fr;
    }

    .mm-navbar-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .mm-hero-card,
    .mm-card {
        padding: 22px;
    }

    .mm-wrapper {
        padding: 22px 14px 44px;
    }
}

@media (max-width: 520px) {
    .mm-actions,
    .mm-nav-actions {
        flex-direction: column;
        width: 100%;
    }

    .mm-btn,
    button.mm-btn {
        width: 100%;
    }

    .mm-title {
        font-size: 32px;
    }
}

.mm-alert-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}

.mm-notif-wrap {
    position: relative;
}

.mm-notif-summary {
    list-style: none;
    position: relative;
}

.mm-notif-summary::-webkit-details-marker {
    display: none;
}

.mm-notif-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #dc2626;
    color: white;
    border-radius: 999px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.mm-notif-dropdown {
    position: absolute;
    right: 0;
    top: 48px;
    width: 360px;
    max-width: calc(100vw - 30px);
    background: white;
    border: 1px solid var(--mm-border);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(30, 64, 175, .18);
    padding: 12px;
    z-index: 50;
}

.mm-notif-item {
    display: block;
    text-decoration: none;
    color: var(--mm-text);
    padding: 12px;
    border-radius: 12px;
    border-bottom: 1px solid #eef2ff;
}

.mm-notif-item:hover {
    background: #eff6ff;
}

.mm-notif-item strong {
    display: block;
    color: #1e40af;
    margin-bottom: 4px;
}

.mm-notif-time {
    display: block;
    font-size: 12px;
    color: var(--mm-muted);
    margin-top: 6px;
}

.mm-notif-empty {
    padding: 14px;
    color: var(--mm-muted);
    text-align: center;
}

@media (max-width: 520px) {
    .mm-notif-wrap {
        width: 100%;
    }

    .mm-notif-dropdown {
        position: static;
        width: 100%;
        margin-top: 8px;
    }
}

.mm-card nav[role="navigation"] {
    margin-top: 16px;
}

.mm-card nav[role="navigation"] a,
.mm-card nav[role="navigation"] span {
    border-radius: 8px !important;
}

.mm-timeline {
    position: relative;
    padding-left: 22px;
}

.mm-timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: #dbeafe;
}

.mm-timeline-item {
    position: relative;
    margin-bottom: 18px;
}

.mm-timeline-dot {
    position: absolute;
    left: -22px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #2563eb;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #bfdbfe;
}

.mm-timeline-content {
    background: #f8fbff;
    border: 1px solid var(--mm-border);
    border-radius: 14px;
    padding: 14px;
}

.mm-timeline-content strong {
    display: block;
    color: #1e40af;
    margin-bottom: 6px;
}

.mm-timeline-content p {
    margin: 0 0 8px 0;
    white-space: pre-line;
}

.mm-timeline-content span {
    font-size: 12px;
    color: var(--mm-muted);
}

.mm-alert-warning {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}

.mm-alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.mm-progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.mm-progress-card {
    border: 1px solid var(--mm-border);
    border-radius: 18px;
    padding: 18px;
    background: #f8fbff;
}

.mm-progress-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.mm-progress-head strong {
    display: block;
    color: #1e3a8a;
    margin-bottom: 6px;
}

.mm-progress-head span {
    color: var(--mm-muted);
    font-size: 13px;
}

.mm-progress-status {
    font-size: 11px;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    white-space: nowrap;
}

.mm-progress-bar {
    height: 10px;
    background: #dbeafe;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 12px;
}

.mm-progress-bar div {
    height: 100%;
    background: #2563eb;
    border-radius: 999px;
}

.mm-mini-stat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.mm-mini-stat {
    background: white;
    border: 1px solid var(--mm-border);
    border-radius: 14px;
    padding: 10px 8px;
    text-align: center;
}

.mm-mini-stat strong {
    display: block;
    font-size: 20px;
    color: #1e40af;
}

.mm-mini-stat span {
    display: block;
    font-size: 11px;
    color: var(--mm-muted);
}

.mm-mini-stat-success strong {
    color: #047857;
}

.mm-mini-stat-warning strong {
    color: #b45309;
}

.mm-mini-stat-danger strong {
    color: #b91c1c;
}

.mm-progress-actions {
    margin-top: 14px;
}

@media (max-width: 640px) {
    .mm-mini-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mm-progress-head {
        flex-direction: column;
    }
}

.mm-logbook-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    background: #e5e7eb;
    color: #374151;
}

.mm-logbook-status-diajukan {
    background: #fef3c7;
    color: #92400e;
}

.mm-logbook-status-valid {
    background: #dcfce7;
    color: #166534;
}

.mm-logbook-status-revisi {
    background: #ffedd5;
    color: #9a3412;
}

.mm-logbook-status-ditolak {
    background: #fee2e2;
    color: #991b1b;
}

/* =========================================================
   DETAIL PENGAJUAN MAGANG MANDIRI - LEGAL DOCKET STYLE
   ========================================================= */

:root {
    --mm-navy: #071426;
    --mm-navy-2: #102d52;
    --mm-gold: #d6a232;
    --mm-gold-soft: #fff2c7;
    --mm-paper: #fffaf0;
    --mm-cream: #f4ead8;
    --mm-ink: #172033;
    --mm-muted: #667085;
    --mm-line: #e7d8bd;
    --mm-green: #147a55;
    --mm-red: #8b1e2d;
    --mm-blue: #1d4ed8;
}

/* Background utama */
body {
    background:
        linear-gradient(90deg, rgba(7,20,38,.035) 1px, transparent 1px),
        linear-gradient(rgba(7,20,38,.035) 1px, transparent 1px),
        var(--mm-cream) !important;
    background-size: 34px 34px !important;
    color: var(--mm-ink);
}

/* Navbar lama dibuat lebih premium */
.mm-navbar {
    background: rgba(255, 250, 240, .96) !important;
    border-bottom: 1px solid rgba(214, 162, 50, .38) !important;
    box-shadow: 0 10px 28px rgba(56, 37, 10, .07) !important;
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.mm-navbar-inner {
    max-width: 1220px !important;
    margin: 0 auto !important;
    padding: 16px 22px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.mm-brand {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    color: var(--mm-navy) !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.mm-brand-icon {
    width: 62px !important;
    height: 62px !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    border: 1px solid var(--mm-line) !important;
    color: var(--mm-navy) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 8px 8px 0 rgba(214, 162, 50, .22) !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    overflow: hidden;
    flex: 0 0 62px;
}

.mm-brand-logo img {
    width: 52px !important;
    height: 52px !important;
    object-fit: contain !important;
}

/* Tombol umum */
.mm-btn,
button.mm-btn,
a.mm-btn {
    border-radius: 999px !important;
    padding: 11px 16px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    transition: .18s ease !important;
}

.mm-btn-primary,
.mm-btn.mm-btn-primary {
    background: var(--mm-navy) !important;
    color: #ffffff !important;
    border: 1px solid var(--mm-navy) !important;
    box-shadow: 0 12px 22px rgba(7, 20, 38, .18) !important;
}

.mm-btn-secondary,
.mm-btn.mm-btn-secondary {
    background: #fffaf0 !important;
    color: var(--mm-navy) !important;
    border: 1px solid var(--mm-line) !important;
}

.mm-btn-danger,
.mm-btn.mm-btn-danger {
    background: #fff1f2 !important;
    color: var(--mm-red) !important;
    border: 1px solid #fecdd3 !important;
}

.mm-btn:hover {
    transform: translateY(-1px);
}

/* Wrapper konten */
.mm-wrapper,
.mm-container,
main.mm-wrapper {
    max-width: 1220px !important;
    margin: 0 auto !important;
    padding: 28px 22px 54px !important;
}

/* Judul halaman */
.mm-wrapper h1,
.mm-wrapper h2,
.mm-wrapper h3,
.mm-container h1,
.mm-container h2,
.mm-container h3 {
    font-family: Georgia, "Times New Roman", serif !important;
    color: var(--mm-navy) !important;
    letter-spacing: -.3px;
}

.mm-wrapper h1,
.mm-container h1 {
    font-size: 34px !important;
    line-height: 1.12 !important;
    margin-bottom: 12px !important;
}

.mm-wrapper h2,
.mm-container h2 {
    font-size: 26px !important;
    line-height: 1.15 !important;
}

/* Card/panel lama jadi model docket */
.mm-card,
.mm-panel,
.mm-box,
.mm-section,
.mm-content,
.mm-detail-card,
.mm-form-card,
.card {
    background: rgba(255, 250, 240, .96) !important;
    border: 1px solid var(--mm-line) !important;
    border-radius: 24px !important;
    box-shadow: 0 16px 36px rgba(56, 37, 10, .08) !important;
}

/* Jika ada card yang menjadi header */
.mm-card-header,
.mm-section-header,
.mm-panel-header {
    border-bottom: 1px solid var(--mm-line) !important;
    padding-bottom: 14px !important;
    margin-bottom: 18px !important;
}

/* Info/status lebih rapi */
.mm-alert,
.alert,
.mm-status-box,
.mm-info-box {
    border-radius: 18px !important;
    border: 1px solid var(--mm-line) !important;
    background: #fffdf7 !important;
    color: var(--mm-ink) !important;
    padding: 16px 18px !important;
    line-height: 1.6 !important;
}

/* Badge/status */
.mm-badge,
.badge,
.status-badge,
[class*="badge"],
[class*="status"] {
    border-radius: 999px;
}

.mm-status,
.status-pengajuan,
.status-chip {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    background: var(--mm-gold-soft) !important;
    color: #92400e !important;
}

/* Tabel */
.mm-table,
table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    width: 100%;
}

.mm-table th,
.mm-table td,
table th,
table td {
    border-color: var(--mm-line) !important;
}

.mm-table th,
table th {
    background: #f8ecd0 !important;
    color: var(--mm-navy) !important;
    font-weight: 900 !important;
}

.mm-table td,
table td {
    background: #fffdf7;
}

/* Form */
.mm-wrapper input,
.mm-wrapper textarea,
.mm-wrapper select,
.mm-container input,
.mm-container textarea,
.mm-container select {
    border: 1px solid #d8c7a7 !important;
    background: #ffffff !important;
    border-radius: 15px !important;
    padding: 12px 14px !important;
    color: var(--mm-ink) !important;
    outline: none !important;
}

.mm-wrapper input:focus,
.mm-wrapper textarea:focus,
.mm-wrapper select:focus,
.mm-container input:focus,
.mm-container textarea:focus,
.mm-container select:focus {
    border-color: var(--mm-gold) !important;
    box-shadow: 0 0 0 4px rgba(214, 162, 50, .16) !important;
}

.mm-wrapper label,
.mm-container label {
    color: var(--mm-navy) !important;
    font-weight: 800 !important;
}

/* Link dokumen */
.mm-file-link,
a[href*="/storage/"],
a[href*="download"] {
    color: var(--mm-blue);
    font-weight: 800;
}

/* Area detail agar tidak terlalu polos */
.mm-detail-summary,
.mm-summary,
.mm-hero,
.mm-dashboard-hero {
    background:
        radial-gradient(circle at 10% 10%, rgba(214,162,50,.22), transparent 32%),
        linear-gradient(135deg, var(--mm-navy) 0%, #0a1f3a 58%, var(--mm-navy-2) 100%) !important;
    color: #ffffff !important;
    border-radius: 28px !important;
    border: none !important;
    box-shadow: 0 22px 50px rgba(7, 20, 38, .20) !important;
}

.mm-detail-summary h1,
.mm-detail-summary h2,
.mm-detail-summary h3,
.mm-summary h1,
.mm-summary h2,
.mm-summary h3,
.mm-hero h1,
.mm-hero h2,
.mm-hero h3 {
    color: #ffffff !important;
}

.mm-detail-summary p,
.mm-summary p,
.mm-hero p {
    color: #dbe7f6 !important;
}

/* Notifikasi dropdown */
.mm-notif-wrap {
    position: relative;
}

.mm-notif-summary {
    cursor: pointer;
}

.mm-notif-dropdown,
.mm-notif-menu {
    background: #fffaf0 !important;
    border: 1px solid var(--mm-line) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 42px rgba(56, 37, 10, .14) !important;
}

/* Responsive */
@media (max-width: 760px) {
    .mm-navbar-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px !important;
    }

    .mm-brand {
        font-size: 19px !important;
    }

    .mm-brand-icon {
        width: 54px !important;
        height: 54px !important;
        flex-basis: 54px !important;
    }

    .mm-brand-logo img {
        width: 45px !important;
        height: 45px !important;
    }

    .mm-nav-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 9px !important;
        width: 100%;
    }

    .mm-btn,
    a.mm-btn,
    button.mm-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 13px !important;
        padding: 10px 12px !important;
    }

    .mm-wrapper,
    .mm-container,
    main.mm-wrapper {
        padding: 18px 14px 40px !important;
    }

    .mm-wrapper h1,
    .mm-container h1 {
        font-size: 27px !important;
    }

    .mm-card,
    .mm-panel,
    .mm-box,
    .mm-section,
    .mm-content,
    .mm-detail-card,
    .mm-form-card,
    .card {
        border-radius: 20px !important;
    }
}
