/* Custom styles for paper trading app */
.dashboard-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    border-radius: 0.75rem;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.small-font {
    font-size: 0.8rem;
}

.progress-container {
    display: flex;
    align-items: center;
}

.progress-percentage {
    margin-left: 10px;
    font-weight: 500;
}

/* Custom badge styles */
.badge {
    font-size: 0.7rem;
    padding: 0.35em 0.65em;
}

/* Table improvements */
.table th {
    border-top: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #6c757d;
}

.table td {
    vertical-align: middle;
}

/* Card header improvements */
.card-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f8f9fa;
}

/* Button improvements */
.btn {
    border-radius: 0.5rem;
    font-weight: 500;
}

/* Navbar improvements */
.navbar-brand {
    font-weight: 700;
}

.navbar-nav .nav-link {
    border-radius: 0.5rem;
    margin: 0 0.1rem;
    padding: 0.5rem 0.8rem !important;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Form improvements */
.form-control, .form-select {
    border-radius: 0.5rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}