/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.goal-card {
    animation: fadeIn 0.3s ease-out forwards;
    opacity: 0;
}

/* Custom progress bar styling */
.progress-bar {
    height: 10px;
    border-radius: 5px;
    transition: width 0.6s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .goal-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .goal-actions button {
        width: 100%;
    }
}