* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

header {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats {
    display: flex;
    gap: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stats span {
    font-size: 16px;
    font-weight: 600;
    color: #555;
}

.stats span:first-child {
    color: #667eea;
}

.stats span:nth-child(2) {
    color: #f59e0b;
}

.stats span:nth-child(3) {
    color: #10b981;
}

.filters {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filters form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-filter {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-filter:hover {
    border-color: #667eea;
    color: #667eea;
    background: #f0f4ff;
}

.btn-filter.active {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.btn-filter.active:hover {
    background: #059669;
    border-color: #059669;
}

.view-toggle {
    display: flex;
    gap: 10px;
    background: #f3f4f6;
    padding: 5px;
    border-radius: 10px;
}

.view-btn {
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s;
    background: transparent;
}

.view-btn:hover {
    color: #667eea;
}

.view-btn.active {
    background: white;
    color: #667eea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.filters select {
    padding: 10px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filters select:hover {
    border-color: #667eea;
}

.filters select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

.task-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.task {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-left: 5px solid #667eea;
    position: relative;
    overflow: hidden;
}

.task:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.task.completed {
    opacity: 0.7;
    border-left-color: #10b981;
}

.task.completed .task-header h3 {
    text-decoration: line-through;
    color: #9ca3af;
}

.task.overdue {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #fff 0%, #fee2e2 100%);
}

.task.soon {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fff 0%, #fef3c7 100%);
}

.task-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.checkbox {
    width: 28px;
    height: 28px;
    border: 3px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #10b981;
    transition: all 0.3s;
    flex-shrink: 0;
}

.checkbox:hover {
    border-color: #667eea;
    transform: scale(1.1);
}

.task.completed .checkbox {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.task-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    flex: 1;
    line-height: 1.4;
}

.category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-professionnel {
    background: #dbeafe;
    color: #1e40af;
}

.cat-personnel {
    background: #fce7f3;
    color: #be185d;
}

.cat-ministere {
    background: #fed7aa;
    color: #c2410c;
}

.description {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.task-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #6b7280;
}

.task-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.task-meta span::before {
    content: '📅';
}

.recurrence {
    color: #8b5cf6 !important;
    font-weight: 600;
}

.recurrence::before {
    content: '🔄';
}

.task-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.btn-edit, .btn-delete {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-edit {
    background: #dbeafe;
    color: #1e40af;
}

.btn-edit:hover {
    background: #3b82f6;
    color: white;
}

.btn-delete {
    background: #fee2e2;
    color: #dc2626;
}

.btn-delete:hover {
    background: #ef4444;
    color: white;
}

.no-tasks {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    color: #9ca3af;
    font-size: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}

input[type="text"],
input[type="email"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .task-list {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .stats {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== VUE LISTE / TABLEAU ===== */

.table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.tasks-table {
    width: 100%;
    border-collapse: collapse;
}

.tasks-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tasks-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.tasks-table td {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    vertical-align: middle;
}

.tasks-table tbody tr {
    transition: background 0.2s;
}

.tasks-table tbody tr:hover {
    background: #f9fafb;
}

.tasks-table tbody tr:last-child td {
    border-bottom: none;
}

.row-overdue {
    background: #fef2f2;
}

.row-overdue:hover {
    background: #fee2e2 !important;
}

.row-soon {
    background: #fffbeb;
}

.row-soon:hover {
    background: #fef3c7 !important;
}

.row-completed {
    opacity: 0.6;
}

.row-completed td {
    text-decoration: line-through;
    color: #9ca3af;
}

.checkbox-small {
    width: 24px;
    height: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #10b981;
    transition: all 0.3s;
}

.checkbox-small:hover {
    border-color: #667eea;
    transform: scale(1.1);
}

.row-completed .checkbox-small {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.text-muted {
    color: #9ca3af;
    font-size: 13px;
}

.text-danger {
    color: #ef4444;
    font-weight: 600;
}

.text-warning {
    color: #f59e0b;
    font-weight: 600;
}

.recurrence-badge {
    display: inline-block;
    padding: 4px 8px;
    background: #f3e8ff;
    color: #7c3aed;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.table-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    font-size: 18px;
    text-decoration: none;
    padding: 5px;
    border-radius: 6px;
    transition: all 0.2s;
    display: inline-block;
}

.btn-icon:hover {
    background: #f3f4f6;
    transform: scale(1.2);
}

/* Responsive pour le tableau */
@media (max-width: 1200px) {
    .tasks-table {
        font-size: 13px;
    }
    
    .tasks-table th,
    .tasks-table td {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
    }
    
    .tasks-table {
        min-width: 800px;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filters form {
        width: 100%;
    }
    
    .view-toggle {
        width: 100%;
        justify-content: center;
    }
}

/* ===== STYLES GAMIFICATION ===== */

.points-notification {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gamification-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 40px;
    line-height: 1;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-top: 5px;
}

.stat-sublabel {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 2px;
}

/* Page récompenses */

.rewards-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.user-points-display, .user-level-display {
    text-align: center;
}

.points-big, .level-big {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.points-label, .level-label {
    font-size: 14px;
    opacity: 0.9;
}

h2 {
    color: #1f2937;
    font-size: 24px;
    margin: 30px 0 20px 0;
    font-weight: 700;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.reward-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.reward-card:hover:not(.locked) {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: #667eea;
}

.reward-card.locked {
    opacity: 0.6;
    filter: grayscale(0.5);
}

.reward-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.reward-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.reward-description {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 40px;
}

.reward-cost {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.cost-value {
    font-size: 24px;
    font-weight: 700;
    color: #d97706;
    display: block;
}

.cost-label {
    font-size: 12px;
    color: #92400e;
}

.btn-claim {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-claim:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.btn-locked {
    width: 100%;
    padding: 12px;
    background: #e5e7eb;
    color: #9ca3af;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: not-allowed;
}

.badges-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.badge-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: all 0.3s;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.badge-emoji {
    font-size: 48px;
    line-height: 1;
}

.badge-text {
    font-weight: 600;
    color: #1f2937;
    font-size: 15px;
}

.badge-date {
    font-size: 12px;
    color: #9ca3af;
}

.no-badges {
    grid-column: 1 / -1;
    text-align: center;
    color: #9ca3af;
    padding: 40px;
    background: white;
    border-radius: 15px;
}

.history-list {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.history-item:last-child {
    border-bottom: none;
}

.history-name {
    font-weight: 600;
    color: #1f2937;
    flex: 1;
}

.history-points {
    color: #ef4444;
    font-weight: 600;
    margin: 0 20px;
}

.history-date {
    color: #9ca3af;
    font-size: 13px;
}

.success-notification {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.error-notification {
    background: #fee2e2;
    color: #dc2626;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .gamification-panel {
        grid-template-columns: 1fr 1fr;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .rewards-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .badges-container {
        grid-template-columns: 1fr;
    }
    
    header > div {
        flex-direction: column;
        width: 100%;
    }
    
    header > div a {
        width: 100%;
        text-align: center;
    }
}

/* ===== MATRICE D'EISENHOWER ===== */

.eisenhower-info {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.eisenhower-info p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #4b5563;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 10px;
    font-size: 14px;
}

.info-icon {
    font-size: 24px;
}

.eisenhower-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.quadrant {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.quadrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.quadrant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.quadrant h2 {
    font-size: 18px;
    margin: 0;
    color: #1f2937;
    font-weight: 700;
}

.task-count {
    background: #f3f4f6;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.quadrant-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
}

.quadrant-tasks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: 400px;
    padding-right: 5px;
}

.quadrant-tasks::-webkit-scrollbar {
    width: 6px;
}

.quadrant-tasks::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.quadrant-tasks::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Quadrant 1: Urgent & Important - Rouge vif */
.q1::before {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.q1 .quadrant-description {
    background: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.q1 .task-count {
    background: #fee2e2;
    color: #991b1b;
}

/* Quadrant 2: Important pas urgent - Vert */
.q2::before {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.q2 .quadrant-description {
    background: #f0fdf4;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.q2 .task-count {
    background: #d1fae5;
    color: #065f46;
}

/* Quadrant 3: Urgent pas important - Orange */
.q3::before {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.q3 .quadrant-description {
    background: #fffbeb;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.q3 .task-count {
    background: #fef3c7;
    color: #92400e;
}

/* Quadrant 4: Ni urgent ni important - Gris bleu */
.q4::before {
    background: linear-gradient(90deg, #64748b 0%, #475569 100%);
}

.q4 .quadrant-description {
    background: #f8fafc;
    color: #475569;
    border-left: 4px solid #64748b;
}

.q4 .task-count {
    background: #e2e8f0;
    color: #475569;
}

.mini-task {
    background: #fafafa;
    padding: 14px;
    border-radius: 10px;
    border-left: 4px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.mini-task:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    background: white;
}

.q1 .mini-task {
    border-left-color: #ef4444;
}

.q1 .mini-task:hover {
    background: #fef2f2;
}

.q2 .mini-task {
    border-left-color: #10b981;
}

.q2 .mini-task:hover {
    background: #f0fdf4;
}

.q3 .mini-task {
    border-left-color: #f59e0b;
}

.q3 .mini-task:hover {
    background: #fffbeb;
}

.q4 .mini-task {
    border-left-color: #64748b;
}

.q4 .mini-task:hover {
    background: #f8fafc;
}

.mini-task-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 10px;
}

.mini-task-header strong {
    flex: 1;
    font-size: 14px;
    color: #1f2937;
    line-height: 1.4;
    font-weight: 600;
}

.mini-task-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-date {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mini-btn {
    padding: 6px 10px;
    background: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s;
    border: 1px solid #e5e7eb;
}

.mini-btn:hover {
    background: #667eea;
    border-color: #667eea;
    transform: scale(1.1);
}

.no-tasks-small {
    color: #9ca3af;
    font-size: 14px;
    font-style: italic;
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 10px;
    border: 2px dashed #e5e7eb;
}

.eisenhower-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    text-align: center;
}

.eisenhower-footer p {
    margin: 0;
    font-size: 14px;
}

/* Checkboxes dans les formulaires */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f9fafb;
    padding: 15px;
    border-radius: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.2s;
}

.checkbox-label:hover {
    border-color: #667eea;
    background: #f0f4ff;
    transform: translateX(3px);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
}

.checkbox-label span {
    font-size: 14px;
    color: #374151;
}

/* Responsive Eisenhower */
@media (max-width: 1024px) {
    .eisenhower-matrix {
        grid-template-columns: 1fr;
    }
    
    .quadrant {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .quadrant-tasks {
        max-height: 300px;
    }
}
