/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.address-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 50px 20px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.08);
    position: relative;
}

.address-info {
    flex: 1;
    min-width: 250px;
}

.address-info strong {
    font-size: 16px;
    font-weight: 600;
}

.sub-text {
    font-size: 14px;
    color: #666;
    margin-top: 3px;
}

.address-actions {
    display: flex;
    gap: 10px;
}

.address-actions .btn {
    padding: 6px 14px;
    border-radius: 8px;
}

.address-badge {
    background: #40e0d0;
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 12px;
    position: absolute;
    top: 14px;
    right: 22px;

}
