/* ANUBANDH LIFE - MIND LAB 2.0 
    Master Stylesheet (v1.2)
*/

/* --- RESET & BASE --- */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
}

.container { 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 40px 20px; 
}

/* --- HEADER & BRANDING --- */
.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 40px;
}

.brand-name {
    color: #2e7d32 !important; /* Anubandh Green */
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* --- DASHBOARD GRID (index.php) --- */
.dashboard-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 40px;
}

.dashboard-column {
    flex: 1;
}

.column-title {
    color: #2e7d32;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.item-group {
    margin-bottom: 30px;
}

.item-group h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.item-group p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

/* --- FORM & CONSENT (consent.php) --- */
.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #2e7d32;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.form-group label {
    flex: 0 0 160px; /* Fixed label width for perfect alignment */
    font-weight: 600;
    color: #333;
}

.form-group input, 
.form-group select {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.consent-scroll {
    background: #f1f8e9; /* Light Green Tint */
    padding: 20px;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    height: 150px;
    overflow-y: auto;
    margin: 30px 0 20px 0;
    font-size: 0.9rem;
    color: #444;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 10px 24px;
    background: #ffffff;
    color: #2e7d32 !important;
    border: 2px solid #2e7d32 !important;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:hover {
    background: #2e7d32 !important;
    color: #ffffff !important;
}

.btn-full {
    width: 100%;
    text-align: center;
    background: #2e7d32 !important;
    color: #ffffff !important;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-full:hover {
    background: #1b5e20 !important;
}

/* --- ASSESSMENT ELEMENTS --- */
.radio-group input[type="radio"] {
    accent-color: #2e7d32;
    width: 18px;
    height: 18px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .dashboard-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .form-group label {
        flex: none;
        width: 100%;
    }
}