/* GLOBAL */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f5f7fa;
    color: #101828;
}

/* APP SHELL */
.app-shell {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* TOP BAR (FIXED - you missed the dot before class) */
.topbar {
    height: 56px;
    background: #ffffff;
    border-bottom: 1px solid #e6e8eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.brand {
    font-weight: 600;
    font-size: 15px;
}

.status {
    font-size: 12px;
    color: #667085;
}

/* LAYOUT */
.layout {
    display: grid;
    grid-template-columns: 220px 1fr 320px;
    height: calc(100vh - 56px);
}

/* LEFT NAV */
.sidenav {
    background: #ffffff;
    border-right: 1px solid #e6e8eb;
    padding: 16px;
}

.nav-title {
    font-size: 12px;
    color: #667085;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.nav-item {
    display: block;
    padding: 10px;
    font-size: 14px;
    color: #344054;
    text-decoration: none;
    border-radius: 6px;
}

.nav-item:hover {
    background: #f2f4f7;
}

.nav-item.active {
    background: #e6f0ff;
    color: #0056D6;
}

/* MAIN */
.main {
    padding: 20px;
    overflow-y: auto;
}

/* CARD */
.card {
    background: #ffffff; /* FIXED (you had comma error) */
    border: 1px solid #e6e8eb;
    border-radius: 6px;
    padding: 24px;
}

.muted {
    color: #667085;
    font-size: 13px;
}

/* RIGHT PANEL */
.insights {
    background: #ffffff;
    border-left: 1px solid #e6e8eb;
    padding: 16px;
}

.panel {
    border: 1px solid #e6e8eb;
    border-radius: 6px;
    padding: 18px;
}

.panel-header h3 {
    margin: 0;
    font-size: 18px;
}

.accent {
    width: 40px;
    height: 2px;
    background: #0056D6;
    margin-top: 6px;
    border-radius: 2px;
}

.panel ul {
    list-style: none;
    padding: 0;
    margin-top: 14px;
}

.panel li {
    padding: 10px 0;
    border-bottom: 1px solid #f2f4f7;
    font-size: 13px;
    color: #344054;
}

.panel li:last-child {
    border-bottom: none;
}

/* SECTION HEADERS */
.form-section-title {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #0056D6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid #0056D6;
    padding-left: 10px;
}

/* FORM STRUCTURE */
.assessment-form {
    margin-top: 15px;
}

/* GROUP */
.form-group {
    margin-bottom: 14px;
}

/* LABELS */
.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #344054;
}

/* INPUTS */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    font-size: 14px;
    background: #ffffff;
    transition: 0.2s;
}

/* FOCUS STATE (CNMAESTRO FEEL) */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056D6;
    box-shadow: 0 0 0 3px rgba(0, 86, 214, 0.1);
}

/* ROW LAYOUT */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* SUBMIT BUTTON */
.submit-btn {
    width: 100%;
    background: #0056D6;
    color: white;
    border: none;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 600;
}

.submit-btn:hover {
    background: #0041a8;
}
