/* static/css/style.css */
.quadrant {
    min-height: 200px;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 10px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.quadrant:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

#do-it {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #c3e6cb;
}

#plan-it {
    background: linear-gradient(135deg, #cce5ff 0%, #b8daff 100%);
    border: 2px solid #b8daff;
}

#delegate-it {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 2px solid #ffeeba;
}

#drop-it {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 2px solid #f5c6cb;
}

.task-card {
    margin-bottom: 5px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Summary cards styling */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Quadrant badges */
.badge {
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quadrant {
        min-height: 180px;
        padding: 15px;
    }

    .card-title {
        font-size: 1.5rem;
    }
}