/* Account Page Specific Styles */
.account-page {
    padding: 40px 0;
}

.account-sidebar {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.account-sidebar .nav-link {
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
    font-weight: 500;
}

.account-sidebar .nav-link.active {
    background: var(--primary);
    color: white;
}

.account-sidebar .nav-link:hover:not(.active) {
    background: #e9ecef;
}

.account-sidebar .nav-link i {
    width: 25px;
    text-align: center;
    margin-right: 10px;
}

.account-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.account-section {
    display: none;
}

.account-section.active {
    display: block;
}

.order-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.order-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-processing {
    background: #fff3cd;
    color: #856404;
}

.status-shipped {
    background: #cce5ff;
    color: #004085;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.wishlist-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.address-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

.address-card .default-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
}

.account-details-form .form-group {
    margin-bottom: 20px;
}