/* Custom CSS for the Crypto Dashboard */

/* Main container styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Header styling */
h1 {
    font-weight: 700;
    color: #2c3e50;
}

/* Card styling */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: #f1f8ff;
    font-weight: 600;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

/* Button styling */
.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Dropdown styling */
.form-select {
    border-radius: 5px;
}

/* Stats card styling */
#current-stats h3 {
    margin-bottom: 5px;
}

#current-stats h4 {
    margin-bottom: 15px;
}

.text-success {
    color: #27ae60 !important;
}

.text-danger {
    color: #e74c3c !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .card {
        margin-bottom: 20px;
    }
}

/* Footer styling */
footer {
    margin-top: 30px;
    padding: 20px 0;
    text-align: center;
    color: #7f8c8d;
}

/* Loading spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

/* Chart containers */
canvas {
    width: 100% !important;
    height: 300px !important;
}
