.lga-dashboard {
    max-width: 1100px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    font-family: Arial, sans-serif;
}

.lga-card,
.lga-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.lga-card h2,
.lga-card h3 {
    margin-top: 0;
}

.lga-card label {
    display: block;
    margin-top: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

.lga-card input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    box-sizing: border-box;
}

.lga-card button {
    margin-top: 18px;
    background: #033B6C;
    color: #ffffff;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: 700;
}

.lga-card button:hover {
    opacity: 0.9;
}

.lga-success {
    color: #047857;
    font-weight: 700;
}

.lga-error {
    color: #b91c1c;
    font-weight: 700;
}

.lga-report-list {
    display: grid;
    gap: 12px;
}

.lga-report-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    display: grid;
    gap: 4px;
}

.lga-report-item span {
    font-size: 14px;
    color: #4b5563;
}

.lga-view-report {
    width: fit-content;
    padding: 8px 12px !important;
}

.lga-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lga-modal-content {
    background: #ffffff;
    border-radius: 18px;
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 28px;
    position: relative;
}

.lga-close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #111827 !important;
    color: #ffffff;
    border-radius: 999px !important;
    width: 34px;
    height: 34px;
    padding: 0 !important;
}

.lga-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e0f2fe;
    color: #033B6C;
    font-size: 28px;
    font-weight: 800;
    border-radius: 16px;
    padding: 16px 22px;
    margin: 16px 0;
}

@media (max-width: 800px) {
    .lga-dashboard {
        grid-template-columns: 1fr;
        margin: 20px;
    }
}