/* Buttons */
.edit-btn,
.add-address-btn {
    width: 80%;
    justify-self: center;
    padding: var(--spacing-xs) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-sm);
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-family: inherit;
    margin-top: 0.5rem;
}

.user-main-details-profile-edit-btn {
    background: var(--text-light) !important;
}

.edit-icon,
.add-icon {
    width: 20px;
    height: 20px;
    stroke: var(--bg-white);
    stroke-width: 2;
    flex-shrink: 0;
}

.add-icon {
    width: 24px;
    height: 24px;
    color: white;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}