/* Account Panel Styles */
.account-sidebar {
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
    padding: 20px;
    border-radius: 8px;
}

.account-sidebar .nav-link {
    color: #333;
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: all 0.3s;
}

.account-sidebar .nav-link:hover {
    background: #e9ecef;
    color: #0d6efd;
}

.account-sidebar .nav-link.active {
    background: #0d6efd;
    color: white;
}

.account-sidebar .nav-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.stat-card {
    transition: transform 0.3s;
}

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