/* ===== NAVBAR ===== */
.ll-navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
}

.ll-navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: #1f2937 !important;
}

.ll-nav-link {
    color: #4b5563 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.ll-nav-link:hover {
    color: #6ec1a3 !important;
}

.ll-toggler {
    border-color: #e5e7eb;
}

/* ===== MAIN CONTENT ===== */
.ll-main {
    padding: 1.5rem 0;
}

/* ===== PAGE HEADER ===== */
.ll-page-header {
    margin-bottom: 1.5rem;
}

.ll-page-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.ll-page-header p {
    color: #6b7280;
}

/* ===== TASK GROUPS ===== */
.ll-group {
    margin-bottom: 2rem;
}

.ll-group-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.ll-empty {
    color: #9ca3af;
    font-style: italic;
}

/* ===== MOBILE TASK CARDS ===== */
.ll-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ll-card-list a {
    text-decoration: none;
    color: inherit;
}

.ll-task-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}

.ll-task-card:hover,
.ll-task-card:active {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.ll-task-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 0.4rem;
}

.ll-task-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.3rem;
}

.ll-task-card-due {
    font-size: 0.82rem;
    color: #9ca3af;
}

/* ===== STATUS COLOURS ===== */
.ll-status-pending    { color: #f59e0b; font-weight: 600; }
.ll-status-complete   { color: #10b981; font-weight: 600; }
.ll-status-incomplete { color: #ef4444; font-weight: 600; }
.ll-status-active     { color: #3b82f6; font-weight: 600; }

/* ===== TASK DETAIL VIEW ===== */
.ll-detail-header {
    margin-bottom: 1.5rem;
}

.ll-back-link {
    display: inline-block;
    color: #6ec1a3;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.ll-back-link:hover {
    color: #5bb893;
}

.ll-detail-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.ll-detail-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
}

.ll-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    gap: 1rem;
}

.ll-detail-row:last-child {
    border-bottom: none;
}

.ll-detail-label {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.9rem;
    min-width: 90px;
}

.ll-detail-value {
    color: #1f2937;
    font-size: 0.95rem;
    text-align: right;
}

.ll-detail-notes .ll-detail-value {
    text-align: left;
}

/* ===== DETAIL ACTION BUTTONS ===== */
.ll-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ll-btn-full {
    width: 100%;
    min-height: 48px;
    font-weight: 600;
    border-radius: 12px;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (min-width: 768px) {
    .ll-detail-actions {
        flex-direction: row;
    }

    .ll-btn-full {
        width: auto;
    }
}

@media (max-width: 576px) {
    .ll-main {
        padding: 1rem 0;
    }

    .ll-detail-header h3 {
        font-size: 1.25rem;
    }
}