.summary-container {
    margin: 0.5rem 0;
}

.summary-cards-row {
    display: flex;
    gap: 1.5rem;
}

.summary-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1;
    display: flex;
    border: 1px solid #eaeaea;
    padding: 0.5rem 0;
}

.summary-item {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.summary-divider {
    width: 1px;
    background-color: #eaeaea;
    margin: 1rem 0;
    align-self: center;
    height: calc(100% - 2rem);
}

.summary-icon {
    background-color: #f8f9fa;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.domains-card .summary-icon {
    background-color: rgba(13, 110, 253, 0.1);
}

.mailboxes-card .summary-icon {
    background-color: rgba(25, 135, 84, 0.1);
}

.orders-card .summary-icon {
    background-color: rgba(83, 69, 27, 0.1);
}

.wallet-card .summary-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.2) 100%);
}

.wallet-card.low-balance .summary-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.2) 100%);
}

.wallet-card .summary-icon svg {
    color: #7c3aed;
}

.wallet-card.low-balance .summary-icon svg {
    color: #dc2626;
}

.mailboxes-card .summary-icon svg {
    color: #198754;
}

.summary-icon svg {
    width: 22px;
    height: 22px;
    color: #212529;
}

.summary-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.summary-count {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.2;
}

.summary-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Info icon styles */
.info-icon {
    margin-left: 0.25rem;
    color: #6c757d;
    cursor: help;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .summary-cards-row {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .summary-card {
        flex-direction: column;
    }

    .summary-divider {
        width: calc(100% - 2rem);
        height: 1px;
        margin: 0 auto;
    }
}