.address-list-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    margin: 10px 0;
    background-color: #fafbfc;
    border-radius: 8px;

    &-circle {
        width: 16px;
        height: 16px;
        border: 1px solid #767676;
        border-radius: 50%;
        margin-right: 15px;
        cursor: pointer;
    }

    &.selected &-circle {
        position: relative;
        background-color: #fff;
        border-color: #ff4444;
        
        &::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8.8px;
            height: 8.8px;
            border-radius: 50%;
            background-color: #ff4444;
        }
    }

    &-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    &-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
    }

    &-name {
        font-size: 14px;
        font-weight: bold;
        color: #222222;
    }

    &-tag {
        background-color: #FF4C3B;
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        padding: 1px 6px;
        border-radius: 2px;
        line-height: 18px !important;
    }

    &-address {
        margin-bottom: 8px;
        font-size: 14px;
        color: #222222;
    }

    &-phone {
        font-size: 14px;
        line-height: 1.3;
        margin: 0;
        color: #222222;
    }

    &-actions {
        display: flex;
        gap: 10px;
        margin-top: 12px;
        button {
            padding: 4px 10px;
            background-color: rgba(237, 239, 244, 0.6);
            color: #777777;
            font-size: 14px;
            cursor: pointer;
            border: none !important;
        }
    }
}