/* Custom styles for Metals Tracker */

/* Body and general styles */
body {
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header styling */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Footer styling */
footer {
    margin-top: 4rem;
}

/* Card styling */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.card-header {
    border-radius: 0.5rem 0.5rem 0 0;
}

/* Dashboard specific styling */
.dashboard-card {
    transition: transform 0.2s;
}

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

/* Metal colors */
.silver-bg {
    background-color: #e6e8e6;
}

.gold-bg {
    background-color: #ffd700;
}

/* Table styling */
.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Form styling */
.form-label {
    font-weight: 500;
}

/* Button styling */
.btn {
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
}

/* Alert styling */
.alert {
    border-radius: 0.5rem;
}

/* Dashboard number showcase */
.number-showcase {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .number-showcase {
        font-size: 2rem;
    }
}