.account-wrapper {
    padding: 40px 0;
}

.list-group-item {
    border: none;
    padding: 12px 20px;
}

.list-group-item i {
    width: 20px;
    margin-right: 10px;
}

.list-group-item.active {
    background-color: #f8f9fa;
    color: #000;
    border-left: 3px solid #771bad
}

.list-group-flush a {
    color: #000!important;
}


.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.order-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.order-item:last-child {
    border-bottom: none;
}

.address-card {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Spinner para loading */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #771bad;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
} 

#recent-orders-list {
    row-gap: 20px!important;
}