/* --- GLOBAL DARK THEME FIXES --- */
.fta-dark-wrapper {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    min-height: 100vh;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Force Text Colors */
.fta-dark-wrapper h2, 
.fta-dark-wrapper h3, 
.fta-dark-wrapper p, 
.fta-dark-wrapper label {
    color: #ffffff !important;
}

/* Profile Section */
.fta-profile-header img {
    border-radius: 50%;
    border: 4px solid #6a11cb;
    box-shadow: 0 0 15px rgba(106, 17, 203, 0.5);
    margin-bottom: 10px;
}

/* Form Styles */
.fta-form-dark input, .fta-quiz-container select {
    background: #1a1a1a !important;
    border: 1px solid #444 !important;
    color: #fff !important;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.fta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.2s;
}
.fta-btn:hover { transform: scale(1.05); }

/* --- PROFESSIONAL CALENDAR (GRID VIEW) --- */
.fta-cal-wrapper {
    max-width: 600px;
    margin: 40px auto;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cal-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cal-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: bold;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 12px;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 Columns Strict */
    gap: 1px; /* Gap creates the border effect */
    background-color: #333; /* Border color */
    border: 1px solid #333;
}

.cal-cell {
    background-color: #1a1a1a; /* Cell inner color */
    min-height: 80px; /* Square look */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px;
    position: relative;
}

.cal-cell.empty {
    background-color: #0d0d0d;
}

.date-num {
    font-size: 12px;
    color: #666;
    align-self: flex-end;
}

/* Status Colors within Calendar */
.cal-cell.success { background-color: rgba(27, 94, 32, 0.3); }
.cal-cell.danger { background-color: rgba(183, 28, 28, 0.3); }
.cal-cell.normal { background-color: rgba(13, 71, 161, 0.3); }

.badge {
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 4px;
    align-self: center;
    margin-top: auto;
    margin-bottom: 10px;
    font-weight: bold;
}
.badge.green { background: #4caf50; color: #fff; }
.badge.red { background: #f44336; color: #fff; }
.badge.blue { background: #2196f3; color: #fff; }

/* Messages */
.fta-error { color: #ff5252; margin: 10px; font-weight: bold; }
.fta-success { color: #69f0ae; margin: 10px; font-weight: bold; }

/* LEADERBOARD OVERRIDES */
.fta-leaderboard { text-align: left; margin-top: 0; }
.lb-card { color: #333; } /* Black text inside white card */
.lb-info h4 { color: #000 !important; }