/* Custom styles */
.task-card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    margin-bottom: 1rem;
}

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

.points-badge {
    font-size: 1.1em;
    padding: 0.4em 0.8em;
}

.task-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .task-card {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .task-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .task-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Form styling */
.login-form {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.15);
}

/* Dashboard styles */
.stats-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d6efd;
}
