/* Task Statistics Cards Styling */
.task-stats-container {
    padding: 10px 0;
    margin-bottom: 15px;
}

/* Simple horizontal stats layout */
.single-stats-card {
    background: white;
    border-radius: 6px;
    padding: 12px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(0,0,0,0.1);
    margin: 0 5px;
}

.stats-icon {
    font-size: 16px;
    margin-left: 10px;
    height: 32px;
    width: 32px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stats-icon-all {
    background: #4b6cb7;
}

.stats-icon-pending {
    background: #f7b733;
}

.stats-icon-completed {
    background: #56ab2f;
}

.stats-icon-overdue {
    background: #ed213a;
}

.stats-value {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.stats-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .single-stats-card {
        flex-direction: column;
        padding: 10px;
    }
    
    .stat-item {
        width: 100%;
        margin-bottom: 10px;
        justify-content: flex-start;
    }
    
    .stat-divider {
        width: 90%;
        height: 1px;
        margin: 5px auto;
    }
} 