/* Custom styles for Funding Tracker */

body {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

#fundingChart {
    max-width: 100%;
    height: auto;
}

.progress {
    border-radius: 10px;
}

.progress-bar {
    transition: width 0.6s ease;
}

.table {
    margin-bottom: 0;
}

.badge {
    padding: 0.5em 0.75em;
    font-weight: 500;
}

.btn {
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

.form-control-color {
    width: 60px;
    height: 38px;
    padding: 2px;
    border-radius: 5px;
}

.alert {
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #fundingChart {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .card-body {
        padding: 1rem;
    }
}

